@FunctionalInterface
public interface Predicate2<A,B>
extends java.util.function.BiPredicate<A,B>
Equal to BiPredicate.
toPredicate(Predicate2)| Modifier and Type | Method and Description |
|---|---|
static <A,B> Predicate2<A,B> |
not(Predicate2<A,B> delegate)
Negate specified predicate
|
boolean |
test(A a,
B b) |
static <A,B> java.util.function.Predicate<Tuple2<A,B>> |
toPredicate(Predicate2<A,B> delegate)
Converts this predicate into a
Predicate were all arguments are represented
as a single Tuple2 instance. |
static <A,B> java.util.function.Predicate<Tuple2<A,B>> toPredicate(Predicate2<A,B> delegate)
Predicate were all arguments are represented
as a single Tuple2 instance.static <A,B> Predicate2<A,B> not(Predicate2<A,B> delegate)