Trait bitslice::Transpose

source ·
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§

source

fn transpose(a: BitMatrix<Self, { T::LEN }>) -> BitMatrix<T, { Self::LEN }>

Object Safety§

This trait is not object safe.

Implementors§