macro_rules! count {
($(,)?) => { ... };
($head: expr $(, $tail: expr)* $(,)?) => { ... };
}Expand description
Helper-macro for assoc_list!: return the number of passed elements.
macro_rules! count {
($(,)?) => { ... };
($head: expr $(, $tail: expr)* $(,)?) => { ... };
}Helper-macro for assoc_list!: return the number of passed elements.