pub trait TransposeAssign {
// Required method
fn transpose_assign(&mut self);
}Expand description
This type supports performing a matrix transpose
§Info
Similar to the AddAssign or MulAssign traits in that it takes a mutable reference to the
underlying object and performs the transpose in place.