Function transpose_bitmatrix

Source
pub fn transpose_bitmatrix(input: &[u8], output: &mut [u8], rows: usize)
Expand description

Transpose a bit matrix.

ยงPanics

If rows % 128 != 0 If for let cols = input.len() * 8 / rows, cols % 128 != 0