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.UseBiFunctioninstead.Maps two objects of typeAandBrespectively to an object of typeT.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default Tapply(A a, B b)Deprecated.Tmap(A a, B b)Deprecated.Mapsaandbto the target object.
-