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