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