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
    Function-Pointer Input: NONE Output: float.

    Quite similar to Java's 'IntSupplier', the specialized 'Supplier' for primitive-integers, but whose 'get' method has been modified to return a 'float'-primitive.


    • Method Summary

       
      @FunctionalInterface: (Lambda) Method
      Modifier and Type Method
      float getAsFloat()
    • Method Detail

      • getAsFloat

          🗕  🗗  🗖
        float getAsFloat()
        Retrieves a result, as a 'float'.

        FunctionalInterface Target-Method:
        This method corresponds to the @FunctionalInterface Annotation's method requirement. It is the only non-default, non-static method in this interface, and may be the target of a Lambda-Expression or '::' (double-colon) Function-Pointer.
        Returns:
        The 'float' result.