Trait ClosedSub
alga::general
pub trait ClosedSub<Right = Self>: Sized + Sub<Right, Output = Self> + SubAssign<Right> { }
[Alias] Trait alias for Sub and SubAssign with result of type Self.
Sub
SubAssign
Self
impl<T, Right> ClosedSub<Right> for T where T: Sub<Right, Output = T> + SubAssign<Right>,