fmal function

double fmal(
  1. double x,
  2. double y,
  3. double z
)

Implementation

double fmal(double x, double y, double z) => fma(x, y, z);