Expand description
Combinators to parse expressions with operator precedence.
Structs§
- Binary
- A binary operator.
- Left
Assoc - Parser implementation for the [
separated_list1
][nom::multi::separated_list1] combinator - Unary
- An unary operator.
Enums§
Functions§
- binary_
op - Runs the inner parser and transforms the result into a binary operator with the given precedence and associativity.
- left_
assoc - Applies a parser multiple times separated by another parser.
- precedence
- Parses an expression with operator precedence.
- unary_
op - Runs the inner parser and transforms the result into an unary operator with the given precedence.