Documentation
1
2
3
4
5
6
7
8
// Convenience macros for internal use.

/// Counts the number of input `tt` tokens.
macro_rules! count {
    () => (0);
    ($x:tt) => (1);
    ($x:tt $($xs:tt)+) => (1 $(+ count!($xs))+);
}