Package civitas.celestis.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.
A function which takes two
floats as input, and returns a float.-
Method Summary
-
Method Details
-
applyAsFloat
float applyAsFloat(float a, float b) Applies this function.- Parameters:
a- The first input parameterb- The second input parameter- Returns:
- The return value of this function
-