macro_rules! const_assert_ge {
    ($x:expr, $($y:expr),+ $(,)?) => { ... };
    (@build $x:expr) => { ... };
    (@build $x:expr, $($y:expr),+) => { ... };
}
Expand description

Asserts that constants are less than or equal to each other.