SortAlgo

Trait SortAlgo 

Source
pub trait SortAlgo<T: Ord + Copy> {
    // Required method
    fn sort(&self, array: &mut [T]);
}

Required Methods§

Source

fn sort(&self, array: &mut [T])

Implementors§