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="",
timestamp="2026-01-24T11:38:25")
@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 TypeMethodDescriptionfloatapplyAsFloat(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
-