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