@FunctionalInterface
public interface DoublePredicate
extends java.util.function.DoublePredicate
| Modifier and Type | Method and Description |
|---|---|
static DoublePredicate |
alwaysFalse()
Creates a Always false function that may be useful if you don't need to process information or just want a default.
|
static DoublePredicate |
alwaysTrue()
Creates a Always true function that may be useful if you don't need to process information or just want a default.
|
default DoublePredicate |
and(java.util.function.DoublePredicate other)
Deprecated.
|
default DoublePredicate |
andType(DoublePredicate other)
A Type specific and-function helper function that reduces boxing/unboxing
|
default DoublePredicate |
negate() |
default DoublePredicate |
or(java.util.function.DoublePredicate other)
Deprecated.
|
default DoublePredicate |
orType(DoublePredicate other)
A Type specific or-function helper function that reduces boxing/unboxing
|
boolean |
test(double k)
Type Specific get function to reduce boxing/unboxing
|
boolean test(double k)
test in interface java.util.function.DoublePredicatek - the value that should be processedstatic DoublePredicate alwaysTrue()
static DoublePredicate alwaysFalse()
default DoublePredicate andType(DoublePredicate other)
other - the other function that should be merged with.@Deprecated default DoublePredicate and(java.util.function.DoublePredicate other)
and in interface java.util.function.DoublePredicatedefault DoublePredicate negate()
negate in interface java.util.function.DoublePredicatedefault DoublePredicate orType(DoublePredicate other)
other - the other function that should be merged with.@Deprecated default DoublePredicate or(java.util.function.DoublePredicate other)
or in interface java.util.function.DoublePredicate