BiPredicate<T, U> typedef

BiPredicate<T, U> = BiFunction<T, U, bool>

Represents a predicate (boolean-valued function) of two arguments.

Implementation

typedef BiPredicate<T,U> = BiFunction<T, U, bool>;