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