pub trait OrdExt<T: Ord + Sized + Clone> {
    fn update_max(&mut self, new: &Self);
}

Required Methods

Implementors