Package eu.bandm.tools.util.function
Interface FloatBiPredicate
- 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:06")
@FunctionalInterface
public interface FloatBiPredicate
Represents a predicate (boolean-valued function) of two long-valued
arguments. This is the
float-consuming primitive type
specialization of BiPredicate.-
Method Summary
Modifier and TypeMethodDescriptionbooleantest(float left, float right) Evaluates this predicate on the given arguments.
-
Method Details
-
test
boolean test(float left, float 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
-