Package Torello.Java.Function
Interface ToFloatFunction<A>
-
- Type Parameters:
A
- The type of the input-parameter.
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ToFloatFunction<A>
Function-Pointer Input:A
Output:float
.
AFunctionalInterface
(Function-Pointer) that is a function for generating / producing a Javafloat
-primitive. This Function accepts1
argument.
Hi-Lited Source-Code:- View Here: Torello/Java/Function/ToFloatFunction.java
- Open New Browser-Tab: Torello/Java/Function/ToFloatFunction.java
-
-
Method Summary
@FunctionalInterface (Lambda) Method Modifier and Type Method float
applyAsFloat(A a)
-
-
-
Method Detail
-
applyAsFloat
float applyAsFloat(A a)
Applies'this'
integer-function to the given argument, and returns the resulting'float'
- Parameters:
a
- the input argument- Returns:
- The
'float'
result.
-
-