T
- The other argument to this predicate.@FunctionalInterface
public interface BiIntPredicate<T>
int
and a custom argument to evaluate.Modifier and Type | Method and Description |
---|---|
boolean |
test(int i,
T t)
Evaluates this predicate on the given arguments.
|
boolean test(int i, T t)
i
- The int
argument.t
- The T
argument.true
if the input arguments matches the predicate, otherwise false
.