Package eu.bandm.tools.util.function
Interface BooleanUnaryOperator
- 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 BooleanUnaryOperator
Represents an operation on a single boolean-valued operand that produces
a boolean-valued result. This is the primitive type specialization of
UnaryOperator
for boolean
.-
Method Summary
Modifier and TypeMethodDescriptionboolean
applyAsBoolean
(boolean arg) Applies this operator to the given operand.
-
Method Details
-
applyAsBoolean
boolean applyAsBoolean(boolean arg) Applies this operator to the given operand.- Parameters:
arg
- the operand- Returns:
- the operator result
-