Package org.jparsec
Class InternalFunctors
- java.lang.Object
-
- org.jparsec.InternalFunctors
-
final class InternalFunctors extends java.lang.Object
Functors used only internally by this package.
-
-
Field Summary
Fields Modifier and Type Field Description private static java.util.function.BiFunction
FIRST_OF_TWO
private static Map5
LAST_OF_FIVE
private static Map4
LAST_OF_FOUR
private static Map3
LAST_OF_THREE
private static java.util.function.BiFunction
LAST_OF_TWO
-
Constructor Summary
Constructors Constructor Description InternalFunctors()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description (package private) static <T,B>
java.util.function.BiFunction<T,B,T>firstOfTwo()
(package private) static <A,B,C,D,T>
Map5<A,B,C,D,T,T>lastOfFive()
(package private) static <A,B,C,T>
Map4<A,B,C,T,T>lastOfFour()
(package private) static <A,B,T>
Map3<A,B,T,T>lastOfThree()
(package private) static <A,T>
java.util.function.BiFunction<A,T,T>lastOfTwo()
(package private) static TokenMap<Token>
tokenWithSameValue(java.lang.Object value)
-
-
-
Field Detail
-
FIRST_OF_TWO
private static final java.util.function.BiFunction FIRST_OF_TWO
-
LAST_OF_TWO
private static final java.util.function.BiFunction LAST_OF_TWO
-
LAST_OF_THREE
private static final Map3 LAST_OF_THREE
-
LAST_OF_FOUR
private static final Map4 LAST_OF_FOUR
-
LAST_OF_FIVE
private static final Map5 LAST_OF_FIVE
-
-
Method Detail
-
firstOfTwo
static <T,B> java.util.function.BiFunction<T,B,T> firstOfTwo()
-
lastOfTwo
static <A,T> java.util.function.BiFunction<A,T,T> lastOfTwo()
-
lastOfThree
static <A,B,T> Map3<A,B,T,T> lastOfThree()
-
lastOfFour
static <A,B,C,T> Map4<A,B,C,T,T> lastOfFour()
-
lastOfFive
static <A,B,C,D,T> Map5<A,B,C,D,T,T> lastOfFive()
-
-