search ( name -- word/f )


Vocabulary
vocabs.parser

Inputs and outputs
namea string
word/fa word or f


Word description
Searches for a word by name in the current manifest. If no such word could be found, outputs f.

Notes
This word should only be called from parsing words.

Definition
USING: namespaces ;

IN: vocabs.parser

: search ( name -- word/f ) manifest get search-manifest ;