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