Macro hyperpom::args_count
source · macro_rules! args_count {
() => { ... };
($head:expr, $($tail:expr,)*) => { ... };
}Expand description
Counts the number of arguments passed to a macro.
macro_rules! args_count {
() => { ... };
($head:expr, $($tail:expr,)*) => { ... };
}Counts the number of arguments passed to a macro.