pub fn transpose_bitmatrix(input: &[u8], output: &mut [u8], rows: usize)
Transpose a bit matrix.
If rows % 128 != 0 If for let cols = input.len() * 8 / rows, cols % 128 != 0
rows % 128 != 0
let cols = input.len() * 8 / rows
cols % 128 != 0