Factor Documentation
|
Home
|
Glossary
|
Search
factorcode.org
delimiter? ( obj -- ? )
Vocabulary
words
Inputs and outputs
obj
an
object
?
a boolean
Word description
Tests if an object is a delimiter word declared by
delimiter
.
Notes
Outputs
f
if the object is not a word.
Definition
USING:
kernel
;
IN:
words
:
delimiter?
( obj -- ? )
dup
word?
[
"delimiter"
word-prop
]
[
drop
f
]
if
;