merge_sort

Function merge_sort 

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

sort the container in the specified range using the merge sort algorithm