xxl.mathematica.function.BiFunction Maven / Gradle / Ivy
package xxl.mathematica.function;
/**
* Represents a function that accepts two arguments and produces a result.
* This is the two-arity specialization of {@link Function}.
*/
public interface BiFunction {
/**
* Applies this function to the given arguments.
*
* @param t the first function argument
* @param u the second function argument
* @return the function result
*/
R apply(T t, U u);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy