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