const_min

Macro const_min 

Source
macro_rules! const_min {
    ($a: expr, $b: expr) => { ... };
}
Expand description

A const-context variant of the min 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.