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 TypeMethodDescriptionboolean
test
(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:
true
if the input arguments match the predicate, otherwisefalse
-