[][src]Trait adtensor::ops::Dot

pub trait Dot<R> {
    type Output;
    fn dot(self, rhs: R) -> Self::Output;
}

Associated Types

type Output

Loading content...

Required methods

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

Loading content...

Implementors

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
[src]

type Output = T

Loading content...