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