max_partial

Macro max_partial 

Source
macro_rules! max_partial {
    ($x:expr) => { ... };
    ($x:expr, $($xs:expr),+) => { ... };
}
Expand description

Returns the maximum element of the arguments. Uses partial_min_max::max for comparison.