pub fn mul_add<Output, V, M, A>(val: V, mul: M, add: A) -> Output
where V: MulAdd<M, A, Output = Output>,
👎Deprecated since 0.15.0: This is redundant with num-trait’s MulAdd trait and std’s mul_add operation
Expand description

Returns (val * mul) + add.