com.koloboke.function
Interface IntPredicate


public interface IntPredicate

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

See Also:
Predicate

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

Method Detail

test

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

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