com.koloboke.function
Interface DoublePredicate
public interface DoublePredicate
Represents a predicate (boolean-valued function) of one double
-valued
argument. This is the double
-consuming primitive type specialization of
Predicate
.
- See Also:
Predicate
Method Summary |
boolean |
test(double value)
Evaluates this predicate on the given argument. |
test
boolean test(double value)
- Evaluates this predicate on the given argument.
- Parameters:
value
- the input argument
- Returns:
true
if the input argument matches the predicate,
otherwise false