macro_rules! max {
($x:expr) => { ... };
($x:expr, $($xs:expr),+) => { ... };
}Expand description
Returns the maximum element of the arguments.
macro_rules! max {
($x:expr) => { ... };
($x:expr, $($xs:expr),+) => { ... };
}Returns the maximum element of the arguments.