Handbook
Glossary
typed-lambda-word? ( object -- ? )
Vocabulary
typed
.
prettyprint
Inputs and outputs
object
an
object
?
a
boolean
Word description
Tests if the object is an instance of the
typed-lambda-word
class.
Definition
USING:
kernel
locals.definitions
words
;
IN:
typed.prettyprint
:
typed-lambda-word?
( object -- ? )
dup
lambda-word?
[
"typed-word"
word-prop
>boolean
]
[
drop
f
]
if
;