Package | Description |
---|---|
org.jparsec |
Provides core Parser implementations for parser combinator logic.
|
org.jparsec.functors |
Provides common functor interfaces, such as Map for mapping parser results
as well as some common implementations.
|
Modifier and Type | Method and Description |
---|---|
static <A,B,C,D> Parser<Tuple4<A,B,C,D>> |
Parsers.tuple(Parser<? extends A> p1,
Parser<? extends B> p2,
Parser<? extends C> p3,
Parser<? extends D> p4)
Deprecated.
Prefer to converting to your own object with a lambda.
|
Modifier and Type | Class and Description |
---|---|
class |
Tuple5<A,B,C,D,E>
Deprecated.
Prefer to using a lambda expression to convert to your own type.
|
Modifier and Type | Method and Description |
---|---|
static <A,B,C,D> Tuple4<A,B,C,D> |
Tuples.tuple(A a,
B b,
C c,
D d)
Deprecated.
Returns a
Tuple4 of 4 objects. |
Modifier and Type | Method and Description |
---|---|
static <A,B,C,D> Map4<A,B,C,D,Tuple4<A,B,C,D>> |
Maps.toTuple4()
Deprecated.
|
Copyright © 2013–2016 jparsec. All rights reserved.