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 *self = (*self * a) + b

Required Methods

Performs the fused multiply-add assignment operation *self = (*self * a) + b

Implementations on Foreign Types

Implementors