Uses of Class
org.jparsec.OperatorTable.Operator
-
Packages that use OperatorTable.Operator Package Description org.jparsec Provides core Parser implementations for parser combinator logic. -
-
Uses of OperatorTable.Operator in org.jparsec
Fields in org.jparsec with type parameters of type OperatorTable.Operator Modifier and Type Field Description private java.util.List<OperatorTable.Operator>
OperatorTable. ops
Methods in org.jparsec that return OperatorTable.Operator Modifier and Type Method Description (package private) OperatorTable.Operator[]
OperatorTable. operators()
Methods in org.jparsec with parameters of type OperatorTable.Operator Modifier and Type Method Description (package private) static <T> Parser<T>
OperatorTable. buildExpressionParser(Parser<? extends T> term, OperatorTable.Operator... ops)
Builds aParser
based on information described byOperatorTable
.int
OperatorTable.Operator. compareTo(OperatorTable.Operator that)
Higher precedence first.private static Parser<?>
OperatorTable. slice(OperatorTable.Operator[] ops, int begin, int end)
-