sized_matrix

Trait Transpose

Source
pub trait Transpose {
    type Output;

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

Unary operator for transposing a value.

Required Associated Types§

Required Methods§

Source

fn transpose(self) -> Self::Output

Returns the transpose of self.

Implementations on Foreign Types§

Source§

impl<T, const M: usize, const N: usize> Transpose for [[T; M]; N]

Implementors§

Source§

impl<T, const M: usize, const N: usize> Transpose for Matrix<T, M, N>

Source§

type Output = Matrix<T, N, M>