pub trait Transpose {
    type Output;

    // Required method
    fn transpose(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

fn transpose(self) -> Self::Output

Implementors§

source§

impl<const R: usize, const C: usize, T: Copy + Clone> Transpose for Matrix<R, C, T>

§

type Output = MatrixSealed<C, R, T>