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