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