Trait Multiply

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

A multiplication.

Required Methods§

Source

fn multiply(&self, _: &Right) -> Output

Perform the multiplication.

Implementors§

Source§

impl<T> Multiply<Diagonal<T>, Compressed<T>> for Compressed<T>
where T: Element + Number,