Handbook
Glossary
heap-node? ( object -- ? )
Vocabulary
tools
.
image-analyzer
.
vm
Inputs and outputs
object
an
object
?
a
boolean
Word description
Tests if the object is an instance of the
heap-node
class.
Definition
USING:
classes.tuple.private
kernel
slots.private
;
IN:
tools.image-analyzer.vm
:
heap-node?
( object -- ? )
dup
tuple?
[
layout-of
7
slot
\
heap-node
eq?
]
[
drop
f
]
if
;