std::cmp::max

Function std::cmp::max

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

Compares and returns the maximum of two values.

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

Examples

use std::cmp;

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

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/cmp/fn.max.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部