Interface BiIntPredicate
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Tests two arguments of type 
int as a predicate.- Author:
- Owen Feehan
- 
Method Summary
- 
Method Details- 
testboolean test(int first, int second) Tests the predicate.- Parameters:
- first- first argument.
- second- second argument.
- Returns:
- result of the predicate.
 
 
-