Interface IntBinaryPredicate
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Like
IntPredicate
but accepts two arguments.- Author:
- Owen Feehan
-
Method Summary
Modifier and TypeMethodDescriptionboolean
test
(int value1, int value2) Tests the predicate on two integer values.
-
Method Details
-
test
boolean test(int value1, int value2) Tests the predicate on two integer values.- Parameters:
value1
- the first argument for the operation.value2
- the second argument for the operation.- Returns:
- true if the predicate is fufilled, false otherwise.
-