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. For overviews, tutorials, examples, guides, and tool documentation, please check out CodeHaus
  • Class
    Description
    Deprecated.
    Use BinaryOperator instead.
    Map<From,To>
    Deprecated.
    Use Function instead.
    Map2<A,B,T>
    Deprecated.
    Use BiFunction instead.
    Map3<A,B,C,T>
    Maps 3 objects of type A, B and C respectively to an object of type T.
    Map4<A,B,C,D,T>
    Maps 4 objects of type A, B, C and D respectively to an object of type T.
    Map5<A,B,C,D,E,T>
    Maps 5 objects of type A, B, C, D and E respectively to an object of type T.
    Map6<A,B,C,D,E,F,T>
    Maps 6 objects to an object of type T.
    Map7<A,B,C,D,E,F,G,T>
    Maps 7 objects to an object of type T.
    Map8<A,B,C,D,E,F,G,H,T>
    Maps 8 objects to an object of type T.
    Provides common implementations of Map 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.
    Deprecated.
    Use UnaryOperator instead.