Trait Sort

Source
pub trait Sort {
    // Required method
    fn adv_sort_mut(&mut self, algo: SortingAlgorithmn);
}

Required Methods§

Implementations on Foreign Types§

Source§

impl<T: Ord + Clone> Sort for [T]

Implementors§