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