Package | Description |
---|---|
org.jparsec |
Provides core Parser implementations for parser combinator logic.
|
Modifier and Type | Method and 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.
|
Copyright © 2013–2016 jparsec. All rights reserved.