Handbook
Glossary
all-words ( -- seq )
Factor handbook
»
The implementation
»
Vocabularies
Prev:
vocab-words ( vocab-spec -- seq )
Next:
words-named ( str -- seq )
Vocabulary
vocabs
Inputs
None
Outputs
seq
a
sequence
of
word
s
Word description
Outputs a sequence of all words in the dictionary.
Definition
USING:
assocs
namespaces
sequences
;
IN:
vocabs
:
all-words
( -- seq )
dictionary
get
values
[
vocab-words
]
map
concat
;