Interface DoubleBinaryFunction<RESULT>

Type Parameters:
RESULT - The resulting type.
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 DoubleBinaryFunction<RESULT>
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(double first, double second)
     
  • Method Details

    • apply

      RESULT apply(double first, double second)
      Parameters:
      first - The first double to apply.
      second - The second double to apply.
      Returns:
      The result of applying both doubles.