parse-until ( end -- vec )
Factor handbook » The language » Parsing words » Nested structure

Prev:parse-literal ( accum end quot -- accum )
Next:delimiter


Vocabulary
parser

Inputs
enda word


Outputs
veca new vector


Word description
Parses objects from parser input until end. Outputs a new vector with the results.

Examples
This word is used to implement ARTICLE:.

Notes
This word should only be called from parsing words.

See also
parse-tokens, each-token, map-tokens, (parse-until)

Definition