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