insertion_sort

Function insertion_sort 

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

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