Trait simba::scalar::ClosedSub[][src]

pub trait ClosedSub<Right = Self>: Sized + Sub<Right, Output = Self> + SubAssign<Right> { }
Expand description

Trait alias for Sub and SubAssign with result of type Self.

Implementors

impl<T, Right> ClosedSub<Right> for T where
    T: Sub<Right, Output = T> + SubAssign<Right>, 
[src]