Uses of Interface
org.codehaus.jparsec.functors.Map3

Packages that use Map3
org.codehaus.jparsec Provides core Parser implementations for parser combinator logic. 
org.codehaus.jparsec.functors Provides common functor interfaces, such as Map for mapping parser results as well as some common implementations. 
 

Uses of Map3 in org.codehaus.jparsec
 

Methods in org.codehaus.jparsec with parameters of type Map3
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.
 

Uses of Map3 in org.codehaus.jparsec.functors
 

Methods in org.codehaus.jparsec.functors that return Map3
static
<A,B,C> Map3<A,B,C,Tuple3<A,B,C>>
Maps.toTuple3()
          A Map3 object that maps 3 values to a Tuple3 object.
 



Copyright © 2014. All rights reserved.