pub trait Transpose {
type Output;
// Required method
fn transpose(self) -> Self::Output;
}
Expand description
Unary operator for transposing a value.
pub trait Transpose {
type Output;
// Required method
fn transpose(self) -> Self::Output;
}
Unary operator for transposing a value.