Trait matrix::operation::MultiplySelf
[−]
[src]
pub trait MultiplySelf<Right: ?Sized> { fn multiply_self(&mut self, &Right); }
A multiplication that overwrites the receiver with the result.
Required Methods
fn multiply_self(&mut self, &Right)
Perform the multiplication.
Implementors
impl<T> MultiplySelf<Diagonal<T>> for Compressed<T> where T: Element + Number
impl<T> MultiplySelf<Diagonal<T>> for Conventional<T> where T: Element + Number