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