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

Packages that use Map4
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 Map4 in org.codehaus.jparsec
 

Methods in org.codehaus.jparsec with parameters of type Map4
static
<A,B,C,D,T>
Parser<T>
Parsers.sequence(Parser<A> p1, Parser<B> p2, Parser<C> p3, Parser<D> p4, Map4<? super A,? super B,? super C,? super D,? extends T> map)
          A Parser that runs 4 parser objects sequentially and transforms the return values using map.
 

Uses of Map4 in org.codehaus.jparsec.functors
 

Methods in org.codehaus.jparsec.functors that return Map4
static
<A,B,C,D> Map4<A,B,C,D,Tuple4<A,B,C,D>>
Maps.toTuple4()
          A Map4 object that maps 4 values to a Tuple4 object.
 



Copyright © 2014. All rights reserved.