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,T> Parser<T> |
Parsers.sequence(Parser<A> p1,
Parser<B> p2,
Parser<C> p3,
Map3<? super A,? super B,? super C,? extends T> map)
A
Parser that runs 3 parser objects sequentially and transforms the return values
using map . |
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.