Package org.jparsec.functors
Interface Map2<A,B,T>
-
- All Superinterfaces:
java.util.function.BiFunction<A,B,T>
- All Known Subinterfaces:
Binary<T>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@Deprecated @FunctionalInterface public interface Map2<A,B,T> extends java.util.function.BiFunction<A,B,T>
Deprecated.UseBiFunction
instead.Maps two objects of typeA
andB
respectively to an object of typeT
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default T
apply(A a, B b)
Deprecated.T
map(A a, B b)
Deprecated.Mapsa
andb
to the target object.
-