pub trait SortOps<T> {
// Required methods
fn sorted(&self) -> Vector<T>;
fn sort_in_place(&mut self);
}Expand description
Trait providing sorting methods for Vector<T>.
Required Methods§
sourcefn sort_in_place(&mut self)
fn sort_in_place(&mut self)
Sorts the vector in place.