Package eu.bandm.tools.util.function
Interface LongBiPredicate
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@Generated(generator="eu.bandm.tools.expander",
version="1.3",
timestamp="2025-08-17T23:53:07")
@FunctionalInterface
public interface LongBiPredicate
Represents a predicate (boolean-valued function) of two long-valued
arguments. This is the
long-consuming primitive type
specialization of BiPredicate.-
Method Summary
Modifier and TypeMethodDescriptionbooleantest(long left, long right) Evaluates this predicate on the given arguments.
-
Method Details
-
test
boolean test(long left, long right) Evaluates this predicate on the given arguments.- Parameters:
left- the first input argumentright- the second input argument- Returns:
trueif the input arguments match the predicate, otherwisefalse
-