Uses of Interface
org.jparsec.functors.Map3
-
Packages that use Map3 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 Map3 in org.jparsec
Fields in org.jparsec declared as Map3 Modifier and Type Field Description private static Map3
InternalFunctors. LAST_OF_THREE
Methods in org.jparsec that return Map3 Modifier and Type Method Description (package private) static <A,B,T>
Map3<A,B,T,T>InternalFunctors. lastOfThree()
Methods in org.jparsec with parameters of type Map3 Modifier and Type Method Description 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)
AParser
that runs 3 parser objects sequentially and transforms the return values usingmap
. -
Uses of Map3 in org.jparsec.functors
Methods in org.jparsec.functors that return Map3 Modifier and Type Method Description static <A,B,C>
Map3<A,B,C,Tuple3<A,B,C>>Maps. toTuple3()
Deprecated.
-