vocab-words ( vocab-spec -- words )
Factor documentation > Factor handbook > The implementation > Vocabularies
Prev:create-vocab ( name -- vocab )
Next:words ( vocab -- seq )


Vocabulary
vocabs

Inputs and outputs
vocab-speca vocabulary specifier
wordsan assoc mapping strings to words


Word description
Outputs the words defined in a vocabulary.

Definition
IN: vocabs

GENERIC: vocab-words ( vocab-spec -- words )


Methods
USING: vocabs ;

M: f vocab-words ;


USING: kernel vocabs ;

M: object vocab-words lookup-vocab vocab-words ;


USING: accessors vocabs ;

M: vocab vocab-words words>> ;