pub trait Dot<Other, T> {
    // Required method
    fn dot(self, other: Other) -> T;
}

Required Methods§

source

fn dot(self, other: Other) -> T

Implementors§

source§

impl<T, S, O> Dot<O, T> for S
where T: Num, S: ViewMatrix + MatrixBase<Dim = Dim1, Item = T>, O: ViewMatrix + MatrixBase<Dim = Dim1, Item = T>,