pub const fn max(a: u64, b: u64) -> u64
Returns the maximum of a and b
a
b
use const_utils::u64::max; assert!(max(100, 10) == 100); assert!(max(0, 100) == 100);