@FunctionalInterface public interface DoublePredicate1 extends Predicate1<java.lang.Double>
ALWAYS_FALSE, ALWAYS_TRUE
Modifier and Type | Method and Description |
---|---|
default boolean |
test(java.lang.Double value) |
boolean |
testDouble(double value)
Test the given value.
|
alwaysFalse, alwaysTrue, and_, and, and, from, isEqual, negate, or_, or, or, xor_, xor, xor
boolean testDouble(double value)
value
- value to testtrue
if the value matches the predicate, false
otherwisedefault boolean test(java.lang.Double value)
test
in interface java.util.function.Predicate<java.lang.Double>