com.koloboke.function
Interface IntIntPredicate


public interface IntIntPredicate

Represents a predicate (boolean-valued function) that accepts two int-valued arguments. This is the (int, int) specialization of BiPredicate.

See Also:
BiPredicate

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

Method Detail

test

boolean test(int 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