com.koloboke.function
Interface BytePredicate


public interface BytePredicate

Represents a predicate (boolean-valued function) of one byte-valued argument. This is the byte-consuming primitive type specialization of Predicate.

See Also:
Predicate

Method Summary
 boolean test(byte value)
          Evaluates this predicate on the given argument.
 

Method Detail

test

boolean test(byte value)
Evaluates this predicate on the given argument.

Parameters:
value - the input argument
Returns:
true if the input argument matches the predicate, otherwise false