@FunctionalInterface
public interface Double2BooleanFunction
extends java.util.function.DoublePredicate
| Modifier and Type | Method and Description |
|---|---|
default Double2BooleanFunction |
and(java.util.function.DoublePredicate other)
Deprecated.
|
default Double2BooleanFunction |
andType(Double2BooleanFunction other)
A Type specific and-function helper function that reduces boxing/unboxing
|
boolean |
get(double k)
Type Specific get function to reduce boxing/unboxing
|
default Double2BooleanFunction |
negate() |
default Double2BooleanFunction |
or(java.util.function.DoublePredicate other)
Deprecated.
|
default Double2BooleanFunction |
orType(Double2BooleanFunction other)
A Type specific or-function helper function that reduces boxing/unboxing
|
default boolean |
test(double k) |
boolean get(double k)
k - the value that should be processeddefault boolean test(double k)
test in interface java.util.function.DoublePredicatedefault Double2BooleanFunction andType(Double2BooleanFunction other)
other - the other function that should be merged with.@Deprecated default Double2BooleanFunction and(java.util.function.DoublePredicate other)
and in interface java.util.function.DoublePredicatedefault Double2BooleanFunction negate()
negate in interface java.util.function.DoublePredicatedefault Double2BooleanFunction orType(Double2BooleanFunction other)
other - the other function that should be merged with.@Deprecated default Double2BooleanFunction or(java.util.function.DoublePredicate other)
or in interface java.util.function.DoublePredicate