ensure-not ( parser -- parser )


Vocabulary
peg

Inputs
parsera parser


Outputs
parsera parser


Word description
Returns a parser that succeeds if the parser fails but does not add anything to the AST and does not move the location in the input string. This can be used for lookahead and disambiguation, along with the ensure word.
"+" token "=" token ensure-not "+=" token 3array seq


Definition