Example usage for Java java.util.function BiPredicate fields, constructors, methods, implement or subclass
The text is from its open source code.
BiPredicate | and(BiPredicate super T, ? super U> other) Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another. |
BiPredicate | negate() Returns a predicate that represents the logical negation of this predicate. |
BiPredicate | or(BiPredicate super T, ? super U> other) Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another. |
boolean | test(T t, U u) Evaluates this predicate on the given arguments. |