pub trait MulAddAssign<A = Self, B = Self> {
    fn mul_add_assign(&mut self, a: A, b: B);
}
Expand description

The fused multiply-add assignment operation.

Required Methods

Performs the fused multiply-add operation.

Implementations on Foreign Types

Implementors