quick_sort

Function quick_sort 

Source
pub fn quick_sort<T>(container: &mut T, range: Range<usize>)
where T: Sortable + ?Sized,
Expand description

sort the container in the specified range using the quicksort algorithm