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.

@FunctionalInterface public interface ToFloatFunction<T>
Functional interface to apply an operation to an object and produce a float.
  • Method Summary

    Modifier and Type
    Method
    Description
    float
    applyAsFloat(T value)
    Applies this function to the given argument of type ToFloatFunction.
  • Method Details

    • applyAsFloat

      float applyAsFloat(T value)
      Applies this function to the given argument of type ToFloatFunction.
      Parameters:
      value - the argument to the function
      Returns:
      the float result