Function std::cmp::max

1.0.0 · source ·
pub fn max<T>(v1: T, v2: T) -> Twhere
    T: Ord,
Expand description

比较并返回两个值中的最大值。

如果比较确定它们相等,则返回第二个参数。

在内部使用 Ord::max 的别名。

Examples

use std::cmp;

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