pub trait Transpose<T: BitArray>: BitArray {
// Required method
fn transpose(a: BitMatrix<Self, { T::LEN }>) -> BitMatrix<T, { Self::LEN }>;
}Expand description
Transpose the dimensions of a matrix.
Input must be wrapped in a BitMatrix to ensure correct alignment.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.