pub trait MulSub { // Required method fn mul_sub(self, m: Self, s: Self) -> Self; }
Combined multiplication and subtraction operation.
Multiplies self with m and subtract s, as in (self * m) - s.
m
s
(self * m) - s