Expand description
Implementation of parser combinators
Functionsยง
- angle ๐
- braces ๐
- brackets ๐
- delimited ๐
- Parses an item surrounded by an opening an closing
Delimiter
- opt_
angle ๐ - parens ๐
- punctuated_
delimited ๐ - punctuated_
until ๐ - Parses a list of zero or more items separated by a punctuation, with optional trailing
punctuation. Parsing continues until the requested
end
token is reached. This does not consume the end token. - punctuated_
with_ ๐trailing - Parses a list of zero or more items separated by a punctuation, with optional trailing
punctuation. Parsing continues until the requested
end
token is reached. This does not consume the end token. - repeat_
while ๐ - Parses a list of zero or more items. Parsing stops when the next token does not match the specified rule.
- sep1 ๐
- Parses a list of one ore more items separated by the requested token. Parsing continues until no separation token is found.
- until ๐
- Parses a list of zero or more items. Parsing continues until the requested
end
token is reached. This does not consume the end token.