Package eu.bandm.tools.util.function
Interface DoubleBiPredicate
- 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.2",
timestamp="2025-07-27T20:16:47")
@FunctionalInterface
public interface DoubleBiPredicate
Represents a predicate (boolean-valued function) of two long-valued
arguments. This is the
double
-consuming primitive type
specialization of BiPredicate
.-
Method Summary
Modifier and TypeMethodDescriptionboolean
test
(double left, double right) Evaluates this predicate on the given arguments.
-
Method Details
-
test
boolean test(double left, double right) Evaluates this predicate on the given arguments.- Parameters:
left
- the first input argumentright
- the second input argument- Returns:
true
if the input arguments match the predicate, otherwisefalse
-