Function core::cmp::max [] [src]

pub fn max<T: Ord>(v1: T, v2: T) -> T

Compare and return the maximum of two values.

Returns the second argument if the comparison determines them to be equal.

Examples

fn main() { use std::cmp; assert_eq!(2, cmp::max(1, 2)); assert_eq!(2, cmp::max(2, 2)); }
use std::cmp;

assert_eq!(2, cmp::max(1, 2));
assert_eq!(2, cmp::max(2, 2));