pub fn transpose_bitmatrix(input: &[u8], output: &mut [u8], rows: usize)Expand description
Transpose a bit matrix.
ยงPanics
- If
rows < 16 - If
rowsis not divisible by 16 - If
input.len()is not divisible byrows - If the number of columns, computed as
input.len() * 8 / rowsis less than 16 - If the number of columns is not divisible by 8