Java Reference
Java Reference
LongTernaryPredicate
Detailed Description
Represents a predicate (boolean-valued function) uppon three.
long
-valued operands. This is the
long
-consuming primitive type specialization of
Predicate
.
This is a functional interface whose functional method is test(long, long, long).
Definition at line 25 of file LongTernaryPredicate.java.
Public Member Functions | |
| boolean | test (long left, long center, long right) |
| Evaluates this predicate on the given arguments. More... | |
| default LongTernaryPredicate | negate () |
| Returns a predicate that represents the logical negation of this predicate. More... | |
Member Function Documentation
◆ negate()
|
inline |
Returns a predicate that represents the logical negation of this predicate.
- Returns
- a predicate that represents the logical negation of this predicate
Definition at line 44 of file LongTernaryPredicate.java.
◆ test()
| boolean test | ( | long | left, |
| long | center, | ||
| long | right | ||
| ) |
Evaluates this predicate on the given arguments.
- Parameters
-
left the first operand center the second operand right the third operand
- Returns
- if the input argument matches the predicate, otherwisetruefalse
The documentation for this interface was generated from the following file: