Package util

Interface DoubleTriFunction<R>


public interface DoubleTriFunction<R>
A functional interface for a function that takes three doubles and returns an object of type R.
  • Method Summary

    Modifier and Type Method Description
    R apply​(double d1, double d2, double d3)
    A function that takes three doubles and returns an object of type R.
  • Method Details

    • apply

      R apply​(double d1, double d2, double d3)
      A function that takes three doubles and returns an object of type R.
      Parameters:
      d1 - The first double.
      d2 - The second double.
      d3 - The third double.
      Returns:
      an object of type R..