Interface BiLongPredicate
- 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
long
as a predicate.- Author:
- Owen Feehan
-
Method Summary
-
Method Details
-
test
boolean test(long first, long second) Tests the predicate.- Parameters:
first
- first argument.second
- second argument.- Returns:
- result of the predicate.
-