Trait eytzinger::permutation::Permutator [] [src]

pub trait Permutator<T, P: ?Sized + Permutation> {
    fn permute(&mut self, data: &mut [T], permutation: &P);
}

A generic permutator.

Required Methods

Applies the given permutation to the given array.

Implementors