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