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