quicksort

Function quicksort

Source
pub fn quicksort<T>(arr: &mut [T])
where T: Ord,
Expand description

An in-place quicksort for ordered items.