@FunctionalInterface
public interface LongTernaryPredicate
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)
.
Predicate
Modifier and Type | Method and Description |
---|---|
default LongTernaryPredicate |
negate()
Returns a predicate that represents the logical negation of this
predicate.
|
boolean |
test(long left,
long center,
long right)
Evaluates this predicate on the given arguments.
|
boolean test(long left, long center, long right)
left
- the first operandcenter
- the second operandright
- the third operandtrue
if the input argument matches the predicate,
otherwise false
default LongTernaryPredicate negate()
Copyright © 2025. All rights reserved.