seq ( seq -- parser )


Vocabulary
peg

Inputs
seqa sequence of parsers


Outputs
parsera parser


Word description
Returns a parser that calls all parsers in the given sequence, in order. The parser succeeds if all the parsers succeed, otherwise it fails. The AST produced is a sequence of the AST produced by the individual parsers.

Definition