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