Package | Description |
---|---|
jfun.parsec |
Provides classes and interfaces for parser combinator logic and basic parsers.
|
Modifier and Type | Method and Description |
---|---|
static <A,B,C> Map3<A,B,C,Tuple3<A,B,C>> |
Maps.id3()
Create a Map3 object that stores the 3 objects into a Tuple3 object.
|
Modifier and Type | Method and Description |
---|---|
static <A,B,C,R> Parser<R> |
Parsers.map3(Parser<A> p1,
Parser<B> p2,
Parser<C> p3,
Map3<? super A,? super B,? super C,R> m3)
Run 3 Parsers sequentially and transform the return values to a new value.
|
static <A,B,C,R> Parser<R> |
Parsers.map3(java.lang.String name,
Parser<A> p1,
Parser<B> p2,
Parser<C> p3,
Map3<? super A,? super B,? super C,R> m3)
Run 3 Parsers sequentially and transform the return values to a new value.
|