pub fn insertion_sort<T: PartialOrd>(arr: &mut [T])
Expand description

Insertion sort

An implementation of the Insertion sort algorithm.