pub fn sort3<'a, T: PartialOrd + Copy>( a: &'a T, b: &'a T, c: &'a T, ) -> (&'a T, &'a T, &'a T)
Sorts a set of three values in increasing order.