Function max3

Source
pub fn max3<'a, 'b, 'c, 'd, T>(a: &'a T, b: &'b T, c: &'c T) -> &'d T
where T: PartialOrd, 'a: 'd, 'b: 'd, 'c: 'd,
Expand description

Returns the maximum of three values.