Function sort3

Source
pub fn sort3<'a, T: PartialOrd + Copy>(
    a: &'a T,
    b: &'a T,
    c: &'a T,
) -> (&'a T, &'a T, &'a T)
Expand description

Sorts a set of three values in increasing order.