Package org.jparsec.functors
Interface Binary<T>
-
- All Superinterfaces:
java.util.function.BiFunction<T,T,T>
,java.util.function.BinaryOperator<T>
,Map2<T,T,T>
@Deprecated public interface Binary<T> extends java.util.function.BinaryOperator<T>, Map2<T,T,T>
Deprecated.UseBinaryOperator
instead.Represents a binary operation on the same typeT
.Implement this interface for binary operator instead of
Map2
for brevity.