Uses of Interface
org.jparsec.functors.Map5
-
Packages that use Map5 Package Description org.jparsec Provides core Parser implementations for parser combinator logic.org.jparsec.functors Provides common functor interfaces, such as Map for mapping parser results as well as some common implementations. -
-
Uses of Map5 in org.jparsec
Fields in org.jparsec declared as Map5 Modifier and Type Field Description private static Map5
InternalFunctors. LAST_OF_FIVE
Methods in org.jparsec that return Map5 Modifier and Type Method Description (package private) static <A,B,C,D,T>
Map5<A,B,C,D,T,T>InternalFunctors. lastOfFive()
Methods in org.jparsec with parameters of type Map5 Modifier and Type Method Description 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)
AParser
that runs 5 parser objects sequentially and transforms the return values usingmap
. -
Uses of Map5 in org.jparsec.functors
Methods in org.jparsec.functors that return Map5 Modifier and Type Method Description static <A,B,C,D,E>
Map5<A,B,C,D,E,Tuple5<A,B,C,D,E>>Maps. toTuple5()
Deprecated.
-