macro_rules! count_idents {
() => { ... };
($one:ident) => { ... };
($($pairs:ident, $_p:ident), *) => { ... };
($odd:ident, $($rest:ident), *) => { ... };
}Expand description
Logarithmic identifier counting macro.
macro_rules! count_idents {
() => { ... };
($one:ident) => { ... };
($($pairs:ident, $_p:ident), *) => { ... };
($odd:ident, $($rest:ident), *) => { ... };
}Logarithmic identifier counting macro.