Uses of Interface
jfun.parsec.Map3

Packages that use Map3
jfun.parsec Provides classes and interfaces for parser combinator logic and basic parsers. 
 

Uses of Map3 in jfun.parsec
 

Methods in jfun.parsec that return Map3
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.
 

Methods in jfun.parsec with parameters of type Map3
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.