Package eu.bandm.tools.util.function
Interface BooleanBinaryOperator
- 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:43")
@FunctionalInterface
public interface BooleanBinaryOperator
Represents an operation on two boolean-valued operands that produces a
boolean-valued result. This is the primitive type specialization of
BinaryOperator
for boolean
.-
Method Summary
Modifier and TypeMethodDescriptionboolean
applyAsBoolean
(boolean left, boolean right) Applies this operator to the given operands.
-
Method Details
-
applyAsBoolean
boolean applyAsBoolean(boolean left, boolean right) Applies this operator to the given operands.- Parameters:
left
- the first operandright
- the second operand- Returns:
- the operator result
-