Package Torello.Java.Function
Interface FloatSupplier
-
- 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 FloatSupplier
FloatSupplier Documentation.
Quite similar to Java's'IntSupplier'
, the specialized 'Supplier' for primitive-integers, but whose'get'
method has been modified to return a'float'
-primitive.
Hi-Lited Source-Code:
- View Here: Torello/Java/Function/FloatSupplier.java
- Open New Browser-Tab: Torello/Java/Function/FloatSupplier.java
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method float
getAsFloat()
-
-
-
Method Detail
-
getAsFloat
float getAsFloat()
Retrieves a result, as a'float'
.- Returns:
- The
'float'
result.
-
-