macro_rules! count_exprs {
() => { ... };
($head:expr $(, $tail:expr)* $(,)?) => { ... };
}Expand description
Macro to count the number of expressions.
macro_rules! count_exprs {
() => { ... };
($head:expr $(, $tail:expr)* $(,)?) => { ... };
}Macro to count the number of expressions.