Interface ToFloatFunction<T>
- Type Parameters:
T
- the object type that this function applies to
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Functional interface to apply an operation to an object and produce a
float
.-
Method Summary
Modifier and TypeMethodDescriptionfloat
applyAsFloat
(T value) Applies this function to the given argument of typeToFloatFunction
.
-
Method Details
-
applyAsFloat
Applies this function to the given argument of typeToFloatFunction
.- Parameters:
value
- the argument to the function- Returns:
- the float result
-