@FunctionalInterface public interface IntPredicate
int
-valued
argument. This is the int
-consuming primitive type specialization of
Predicate
.
This is a functional interface
whose functional method is test(int)
.
Predicate
Modifier and Type | Method and Description |
---|---|
boolean |
test(int value)
Evaluates this predicate on the given argument.
|