Uses of Interface
org.jparsec.functors.Map8
-
Packages that use Map8 Package Description org.jparsec Provides core Parser implementations for parser combinator logic. -
-
Uses of Map8 in org.jparsec
Methods in org.jparsec with parameters of type Map8 Modifier and Type Method Description static <A,B,C,D,E,F,G,H,T>
Parser<T>Parsers. sequence(Parser<A> p1, Parser<B> p2, Parser<C> p3, Parser<D> p4, Parser<E> p5, Parser<F> p6, Parser<G> p7, Parser<H> p8, Map8<? super A,? super B,? super C,? super D,? super E,? super F,? super G,? super H,? extends T> map)
AParser
that runs 7 parser objects sequentially and transforms the return values usingmap
.
-