Uses of Interface
org.jparsec.functors.Map5
Packages that use Map5
Package
Description
Provides core Parser implementations for parser combinator logic.
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 Map5Methods in org.jparsec that return Map5Modifier and TypeMethodDescription(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 Map5Modifier and TypeMethodDescriptionstatic <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