Trait MultiplyInto

Source
pub trait MultiplyInto<Right: ?Sized, Output: ?Sized> {
    // Required method
    fn multiply_into(&self, _: &Right, _: &mut Output);
}
Expand description

A multiplication that adds the result to a third object.

Required Methods§

Source

fn multiply_into(&self, _: &Right, _: &mut Output)

Perform the multiplication.

Implementors§

Source§

impl<'l, T> MultiplyInto<[T], [T]> for Compressed<T>
where T: Element + Number,

Source§

impl<'l, T> MultiplyInto<Compressed<T>, [T]> for Conventional<T>
where T: Element + Number,