pub trait MinMax { type Inner: PartialOrd; // Required method fn minmax(&mut self) -> Option<(Self::Inner, Self::Inner)>; }
Simultaneously compute the min and max of items in an Iterator. Returns None if the iterator is empty.
None