Handbook
Glossary
search-manifest ( name manifest -- word/f )
Vocabulary
vocabs
.
parser
Inputs
name
a
string
manifest
a
manifest
Outputs
word/f
a
word
or
f
Word description
Searches for a word by name in the given manifest. If no such word could be found, outputs
f
.
Definition
USING:
kernel
vocabs.parser.private
;
IN:
vocabs.parser
:
search-manifest
( name manifest -- word/f )
2dup
qualified-search
[
2nip
]
[
vocab-search
]
if*
;