[][src]Function const_utils::i64::max

pub const fn max(a: i64, b: i64) -> i64

Returns the maximum of a and b

use const_utils::i64::max;
assert!(max(100, 10) == 100);
assert!(max(0, 100) == 100);