macro_rules! max {
($x:expr) => { ... };
($x:expr, $($e:expr),+) => { ... };
}
Expand description
std::cmp::max() extension for use with multiple arguments.
macro_rules! max {
($x:expr) => { ... };
($x:expr, $($e:expr),+) => { ... };
}
std::cmp::max() extension for use with multiple arguments.