Package org.jparsec.functors
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-
ClassDescriptionBinary<T>Deprecated.Map<From,
To> Deprecated.UseFunction
instead.Map2<A,B, T> Deprecated.UseBiFunction
instead.Map3<A,B, C, T> Maps 3 objects of typeA
,B
andC
respectively to an object of typeT
.Map4<A,B, C, D, T> Maps 4 objects of typeA
,B
,C
andD
respectively to an object of typeT
.Map5<A,B, C, D, E, T> Maps 5 objects of typeA
,B
,C
,D
andE
respectively 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
.Provides common implementations ofMap
interface 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.Deprecated.Prefer to using a lambda expression to convert to your own type.Unary<T>Deprecated.UseUnaryOperator
instead.
BinaryOperator
instead.