Module pest::prec_climber
source · [−]👎 Deprecated since 2.4.0:
Use pest::pratt_parser
instead (it is an equivalent which also supports unary prefix/suffix operators).
While prec_climber is going to be kept in 2.x minor and patch releases, it may be removed in a future major release.
Expand description
Constructs useful in infix operator parsing with the precedence climbing method.
Structs
OperatorDeprecated
Infix operator used in PrecClimber
.
PrecClimberDeprecated
List of operators and precedences, which can perform precedence climbing on infix
expressions contained in a Pairs
. The token pairs contained in the Pairs
should start
with a primary pair and then alternate between an operator and a primary.