Interface FloatToDoubleFunction

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 FloatToDoubleFunction
Functional interface to apply a function to a single float input and produce a single double result.
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    applyAsDouble(float value)
    Apply this function to value.
  • Method Details

    • applyAsDouble

      double applyAsDouble(float value)
      Apply this function to value.
      Parameters:
      value - The float input
      Returns:
      The double result