com.koloboke.function
Interface FloatObjPredicate<U>

Type Parameters:
U - the type of the second argument the predicate

public interface FloatObjPredicate<U>

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

See Also:
BiPredicate

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

Method Detail

test

boolean test(float a,
             U 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