[][src]Function voracious_radix_sort::american_flag_sort

pub fn american_flag_sort<T, K>(arr: &mut [T], radix: usize) where
    T: Radixable<K>,
    K: RadixKey

American flag sort

An implementation of the famous American flag sort algorithm.

This algorithm is used as a fallback in the Ska sort.

The American flag sort is an in place unstable radix sort.