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