Package org.jparsec.functors
Provides common functor interfaces, such as Map for mapping parser results
as well as some common implementations.
Package Specification
The code is developed and tested under Java 5.0.Related Documentation
For overviews, tutorials, examples, guides, and tool documentation, please check out CodeHaus-
Interface Summary Interface Description Binary<T> Deprecated. UseBinaryOperatorinstead.Map<From,To> Deprecated. UseFunctioninstead.Map2<A,B,T> Deprecated. UseBiFunctioninstead.Map3<A,B,C,T> Maps 3 objects of typeA,BandCrespectively to an object of typeT.Map4<A,B,C,D,T> Maps 4 objects of typeA,B,CandDrespectively to an object of typeT.Map5<A,B,C,D,E,T> Maps 5 objects of typeA,B,C,DandErespectively to an object of typeT.Map6<A,B,C,D,E,F,T> Maps 6 objects to an object of typeT.Map7<A,B,C,D,E,F,G,T> Maps 7 objects to an object of typeT.Map8<A,B,C,D,E,F,G,H,T> Maps 8 objects to an object of typeT.Unary<T> Deprecated. UseUnaryOperatorinstead. -
Class Summary Class Description Maps Provides common implementations ofMapinterface and the variants.Pair<A,B> Deprecated. Prefer to using a lambda expression to convert to your own type.Tuple3<A,B,C> Deprecated. Prefer to using a lambda expression to convert to your own type.Tuple4<A,B,C,D> Deprecated. Prefer to using a lambda expression to convert to your own type.Tuple5<A,B,C,D,E> Deprecated. Prefer to using a lambda expression to convert to your own type.Tuples Deprecated. Prefer to using a lambda expression to convert to your own type.