Interface IntIntIntPredicate
public interface IntIntIntPredicate
Represents an operation that accepts three int arguments and returns a
This is a functional interface whose functional method is
boolean result.
This is a functional interface whose functional method is
test(int, int, int).-
Method Summary
Modifier and TypeMethodDescriptionbooleantest(int first, int second, int third) Evaluates this predicate on the given arguments.
-
Method Details
-
test
boolean test(int first, int second, int third) Evaluates this predicate on the given arguments.- Parameters:
first- the first input argumentsecond- the second input argumentthird- the third input argument- Returns:
trueif the input arguments match the predicate, otherwisefalse
-