Interface DoubleTernaryOperator

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 DoubleTernaryOperator
Functional interface for functions mapping (double,double,double) to double.
Version:
1.0
Author:
Christian Fries
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    applyAsDouble(double x, double y, double z)
    Applies this operator to the given operands.
  • Method Details

    • applyAsDouble

      double applyAsDouble(double x, double y, double z)
      Applies this operator to the given operands.
      Parameters:
      x - the first operand
      y - the second operand
      z - the third operand
      Returns:
      the operator result