pub trait SortingAlgorithm {
    fn sort<T: Ord>(slice: &mut [T]);
}

Required methods

Implementors