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> Parser<Tuple3<A,B,C>> |
Parsers.tuple(Parser<? extends A> p1,
Parser<? extends B> p2,
Parser<? extends C> p3)
Deprecated.
Prefer to converting to your own object with a lambda.
|
Modifier and Type | Class and Description |
---|---|
class |
Tuple4<A,B,C,D>
Deprecated.
Prefer to using a lambda expression to convert to your own type.
|
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> Tuple3<A,B,C> |
Tuples.tuple(A a,
B b,
C c)
Deprecated.
Returns a
Tuple3 of 3 objects. |
Modifier and Type | Method and Description |
---|---|
static <A,B,C> Map3<A,B,C,Tuple3<A,B,C>> |
Maps.toTuple3()
Deprecated.
|
Copyright © 2013–2016 jparsec. All rights reserved.