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

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

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

Uses of Map5 in org.codehaus.jparsec.functors
 

Methods in org.codehaus.jparsec.functors that return Map5
static
<A,B,C,D,E>
Map5<A,B,C,D,E,Tuple5<A,B,C,D,E>>
Maps.toTuple5()
          A Map5 object that maps 5 values to a Tuple5 object.
 



Copyright © 2014. All rights reserved.