[][src]Function const_utils::max

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

Returns the maximum of a and b

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