xxl.mathematica.function.BiPredicate Maven / Gradle / Ivy
package xxl.mathematica.function;
/**
* Represents a predicate (boolean-valued function) of two arguments. This is
* the two-arity specialization of {@link Predicate}.
*/
public interface BiPredicate {
/**
* Evaluates this predicate on the given arguments.
*
* @param t the first input argument
* @param u the second input argument
* @return {@code true} if the input arguments match the predicate,
* otherwise {@code false}
*/
boolean test(T t, U u);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy