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.
macro_rules! max_partial {
($x:expr) => { ... };
($x:expr, $($xs:expr),+) => { ... };
}Returns the maximum element of the arguments. Uses partial_min_max::max for comparison.