Trait matrix::operation::MultiplyInto
[−]
[src]
pub trait MultiplyInto<Right: ?Sized, Output: ?Sized> { fn multiply_into(&self, &Right, &mut Output); }
A multiplication that adds the result to a third object.
Required Methods
fn multiply_into(&self, &Right, &mut Output)
Perform the multiplication.
Implementors
impl<'l, T> MultiplyInto<[T], [T]> for Compressed<T> where T: Element + Number
impl<'l, T> MultiplyInto<Compressed<T>, [T]> for Conventional<T> where T: Element + Number