com.koloboke.function
Interface ByteIntPredicate


public interface ByteIntPredicate

Represents a predicate (boolean-valued function) that accepts a byte-valued and an int-valued argument. This is the (byte, int) specialization of BiPredicate.

See Also:
BiPredicate

Method Summary
 boolean test(byte a, int b)
          Evaluates this predicate on the given arguments.
 

Method Detail

test

boolean test(byte a,
             int b)
Evaluates this predicate on the given arguments.

Parameters:
a - the first input argument
b - the second input argument
Returns:
true if the input arguments match the predicate, otherwise false