default IBiPredicate<T,U> |
IBiPredicate.and(BiPredicate<? super T,? super U> other) |
Returns a composed predicate that represents a short-circuiting logical AND
of this predicate and another.
|
static <T,U> IBiPredicate<T,U> |
IBiPredicate.and(BiPredicate<? super T,? super U> aFirst,
BiPredicate<? super T,? super U> aSecond) |
|
default IBiPredicate<T,U> |
IBiPredicate.negate() |
Returns a predicate that represents the logical negation of this predicate.
|
default IBiPredicate<T,U> |
IBiPredicate.or(BiPredicate<? super T,? super U> other) |
Returns a composed predicate that represents a short-circuiting logical OR
of this predicate and another.
|
static <T,U> IBiPredicate<T,U> |
IBiPredicate.or(BiPredicate<? super T,? super U> aFirst,
BiPredicate<? super T,? super U> aSecond) |
|