org.matheclipse.core.generic.interfaces
Interface BiFunction<F1,F2,T>
-
- All Known Implementing Classes:
- BinaryApply, BinaryEval, BinaryFunctorImpl, BinaryMap, BinaryNumerical
public interface BiFunction<F1,F2,T>A BiFunction provides a transformation on two objects and returns the resulting object.The transformation on the source objects does not necessarily result in an object of a different type.
Implementors of BiFunction which may cause side effects upon evaluation are strongly encouraged to state this fact clearly in their API documentation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description Tapply(F1 from1, F2 from2)Applys the function to an object of typesF1andF2, resulting in an object of typeT.
-
-
-
Method Detail
-
apply
T apply(@Nullable F1 from1, @Nullable F2 from2)
Applys the function to an object of typesF1andF2, resulting in an object of typeT. Note that typesF1,F2andTmay or may not be the same.- Parameters:
from1- The first source object.from2- The second source object.- Returns:
- The resulting object.
-
-
DMelt 3.0 © DataMelt by jWork.ORG