Trait Dot

Source
pub trait Dot<R> {
    type Output;

    // Required method
    fn dot(self, rhs: R) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn dot(self, rhs: R) -> Self::Output

Implementors§

Source§

impl<'a, 'b, T, N> Dot<&'b Tensor<T, N, T, CMaj>> for &'a Tensor<T, N, T, RMaj>
where T: Add<T, Output = T> + AddAssign<T> + Mul<T, Output = T> + Default + Sum + Sized + Copy, N: ArrayLength<T> + Unsigned,