//! The bottom sorting algorithm (we could just have 1-element runs and do all
//! the sorting with the merge algorithm, but that would be much slower).
use crateComparator;
/// Sorts the list using insertion sort.
// This version was almost completely copied from libcollections/slice.rs
pub