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