pub const fn min_const(a: u64, b: u64) -> u64
Return the minimum of two values - compile-time constant.
use chie_core::utils::min_const; assert_eq!(min_const(5, 10), 5);