@FunctionalInterface
public interface IntBiPredicate
BiPredicate
for int
values.Modifier and Type | Method and Description |
---|---|
default IntBiPredicate |
and(IntBiPredicate predicate)
Combine this predicate with another predicate using "
and " boolean logic. |
default IntBiPredicate |
negate()
Negate this predicate, returning a predicate that always returns the opposite values.
|
default IntBiPredicate |
or(IntBiPredicate predicate)
Combine this predicate with another predicate using "
or " boolean logic. |
boolean |
test(int c1,
int c2)
Test this predicate against the given two
int s. |
boolean test(int c1, int c2)
int
s.default IntBiPredicate negate()
default IntBiPredicate and(IntBiPredicate predicate)
and
" boolean logic.default IntBiPredicate or(IntBiPredicate predicate)
or
" boolean logic.