pub trait Transpose {
    type Output;

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

Unary operator for transposing a value.

Required Associated Types

Required Methods

Returns the transpose of self.

Implementations on Foreign Types

Implementors