Interface ToFloatFunction<T>

Type Parameters:
T - the input type
All Superinterfaces:
ToPrimitiveFunction<T>, TypedFunction<T>
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> extends ToPrimitiveFunction<T>
A float function.
  • Method Details

    • cast

      static <T> ToFloatFunction<T> cast()
      Assumes the object value is directly castable to a float. Equivalent to x -> (float)x.
      Type Parameters:
      T - the value type
      Returns:
      the float function
    • map

      static <T, R> ToFloatFunction<T> map(Function<? super T,? extends R> f, ToFloatFunction<? super R> g)
      Creates the function composition g ∘ f.

      Equivalent to x -> g.applyAsFloat(f.apply(x)).

      Type Parameters:
      T - the input type
      R - the intermediate type
      Parameters:
      f - the inner function
      g - the outer function
      Returns:
      the float function
    • applyAsFloat

      float applyAsFloat(T value)
      Applies this function to the given argument.
      Parameters:
      value - the function argument
      Returns:
      the function result
    • returnType

      default FloatType returnType()
      Description copied from interface: TypedFunction
      This function's return type.
      Specified by:
      returnType in interface ToPrimitiveFunction<T>
      Specified by:
      returnType in interface TypedFunction<T>
      Returns:
      the type
    • walk

      default <R> R walk(ToPrimitiveFunction.Visitor<T,R> visitor)
      Specified by:
      walk in interface ToPrimitiveFunction<T>