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