[][src]Trait sized_matrix::Transpose

pub trait Transpose {
    type Output;
    fn transpose(self) -> Self::Output;
}

Unary operator for transposing a value.

Associated Types

type Output

Loading content...

Required methods

fn transpose(self) -> Self::Output

Returns the transpose of self.

Loading content...

Implementations on Foreign Types

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

Loading content...

Implementors

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

type Output = Matrix<T, N, M>

Loading content...