com.koloboke.function
Interface FloatFloatPredicate
public interface FloatFloatPredicate
Represents a predicate (boolean-valued function) that accepts
two float
-valued arguments.
This is the (float,
float)
specialization
of BiPredicate
.
- See Also:
BiPredicate
Method Summary |
boolean |
test(float a,
float b)
Evaluates this predicate on the given arguments. |
test
boolean test(float a,
float b)
- Evaluates this predicate on the given arguments.
- Parameters:
a
- the first input argumentb
- the second input argument
- Returns:
true
if the input arguments match the predicate,
otherwise false