com.koloboke.function
Interface ShortDoublePredicate
public interface ShortDoublePredicate
Represents a predicate (boolean-valued function) that accepts
a short
-valued and
a double
-valued argument.
This is the (short,
double)
specialization
of BiPredicate
.
- See Also:
BiPredicate
Method Summary |
boolean |
test(short a,
double b)
Evaluates this predicate on the given arguments. |
test
boolean test(short a,
double 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