fmaf function

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

Implementation

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