Package de.unkrig.lfr.core
Interface IntPredicate
public interface IntPredicate
An optimization of
Predicate
<Integer>
which saves the overhead of boxing and unboxing.-
Method Summary
Modifier and TypeMethodDescriptionboolean
evaluate
(int subject) Returnstrue
iff the subject "qualifies", otherwisefalse
.
-
Method Details
-
evaluate
boolean evaluate(int subject) Returnstrue
iff the subject "qualifies", otherwisefalse
.
-