com.koloboke.function
Interface ObjDoublePredicate<T>

Type Parameters:
T - the type of the first argument to the predicate

public interface ObjDoublePredicate<T>

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

See Also:
BiPredicate

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

Method Detail

test

boolean test(T a,
             double 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