Trait concision_core::traits::arr::Matmul

source ·
pub trait Matmul<Rhs = Self> {
    type Output;

    // Required method
    fn matmul(&self, rhs: Rhs) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

fn matmul(&self, rhs: Rhs) -> Self::Output

Implementors§

source§

impl<X, Y, S> Matmul<X> for S
where S: Dot<X, Output = Y>,

§

type Output = Y