Package org.matheclipse.core.generic
Class BinaryFunctorImpl<T>
- java.lang.Object
-
- org.matheclipse.core.generic.BinaryFunctorImpl<T>
-
- All Implemented Interfaces:
BiFunction<T,T,T>
@Deprecated public abstract class BinaryFunctorImpl<T> extends Object implements BiFunction<T,T,T>
Deprecated.A function object that takes two arguments and returns a result. The two arguments are both of typeT
and the result is also of typeT
-
-
Constructor Summary
Constructors Constructor Description BinaryFunctorImpl()
Deprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description abstract T
apply(T firstArg, T secondArg)
Deprecated.Executes the function and returns the result.Function<T,T>
bind2(T p_param2)
Deprecated.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.function.BiFunction
andThen
-
-