pub trait MulAdd<A = Self, B = Self> { type Output; // Required method fn mul_add(self, a: A, b: B) -> Self::Output; }
The resulting type after applying the fused multiply-add.
Performs the fused multiply-add operation.