Uses of Class
org.jparsec.OperatorTable
-
Packages that use OperatorTable Package Description org.jparsec Provides core Parser implementations for parser combinator logic. -
-
Uses of OperatorTable in org.jparsec
Methods in org.jparsec that return OperatorTable Modifier and Type Method Description OperatorTable<T>
OperatorTable. infixl(Parser<? extends java.util.function.BiFunction<? super T,? super T,? extends T>> parser, int precedence)
Adds an infix left-associative binary operator.OperatorTable<T>
OperatorTable. infixn(Parser<? extends java.util.function.BiFunction<? super T,? super T,? extends T>> parser, int precedence)
Adds an infix non-associative binary operator.OperatorTable<T>
OperatorTable. infixr(Parser<? extends java.util.function.BiFunction<? super T,? super T,? extends T>> parser, int precedence)
Adds an infix right-associative binary operator.OperatorTable<T>
OperatorTable. postfix(Parser<? extends java.util.function.Function<? super T,? extends T>> parser, int precedence)
Adds a postfix unary operator.OperatorTable<T>
OperatorTable. prefix(Parser<? extends java.util.function.Function<? super T,? extends T>> parser, int precedence)
Adds a prefix unary operator.
-