Structs§
Enums§
Functions§
- bool_
literal - compound_
identifier - condition_
value - identifier
- many_
until_ eof - Applies the parser
funtil reaching the end of the input.fmust always make progress (i.e. consume input) and many_until_eof will panic if it doesn’t, to prevent infinite loops. Returns the results offin a Vec. - map_err
- numeric_
literal - skip_ws
- string_
literal - using
- using_
list - ws
- Wraps a parser |f| and discards zero or more whitespace characters or comments before it. Doesn’t discard whitespace after the parser, since this would make it difficult to ensure that the AST spans contain no trailing whitespace.