transpose_bitmatrix

Function transpose_bitmatrix 

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

Transpose a bit matrix.

ยงPanics

  • If rows < 16
  • If rows is not divisible by 16
  • If input.len() is not divisible by rows
  • If the number of columns, computed as input.len() * 8 / rows is less than 16
  • If the number of columns is not divisible by 8