@FunctionalInterface
public abstract interface BiPredicate<T, U>
  Comment     Returned-by     Constructor-argument     Method-argument     Field-type     Type-bound     Links  

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

This is a functional interface whose functional method is test(Object, Object).

Parameters:
<T>    the type of the first argument to the predicate
<U>    the type of the second argument the predicate

See also:
Predicate

Since:  1.8