pub trait PermutationMut<T: Copy> {
// Required method
fn get_cols_mut(
&mut self,
) -> (&mut [[T; 16]], &mut [T; 16], &mut [T; 12], Option<&mut [[T; 16]; 8]>, Option<&mut [T; 13]>, &mut [T; 16]);
}Expand description
Trait that describes setter functions for the permutation columns.