com.koloboke.function
Interface BiPredicate<T,U>

Type Parameters:
T - the type of the first argument to the predicate
U - the type of the second argument the predicate

public interface BiPredicate<T,U>

Represents a predicate (boolean-valued function) of two arguments. This is the two-arity specialization of Predicate.

See Also:
Predicate

Method Summary
 boolean test(T t, U u)
          Evaluates this predicate on the given arguments.
 

Method Detail

test

boolean test(T t,
             U u)
Evaluates this predicate on the given arguments.

Parameters:
t - the first input argument
u - the second input argument
Returns:
true if the input arguments match the predicate, otherwise false