pub trait Sort<T: Ord> {
    fn sort(arr: &mut [T]);
}
Expand description

Types that implement this trait can sort slices of data

Required Methods§

Sorts a slice of data

Implementors§