macro_rules! const_max {
($a: expr, $b: expr) => { ... };
}Expand description
A const-context variant of the max function.
This is hidden as it’s not to be considered part of our API commitment and is not guaranteed to
be available/usable. It’s implemented as a macro to work with any type, as we can’t express an
Ord bound within a const context.