macro_rules! recursive_array {
[] => { ... };
[$item: expr $(,)?] => { ... };
[$first_item: expr, $($item: expr),+] => { ... };
}Expand description
a macro for instantiating a recursive array with the given elements.
macro_rules! recursive_array {
[] => { ... };
[$item: expr $(,)?] => { ... };
[$first_item: expr, $($item: expr),+] => { ... };
}a macro for instantiating a recursive array with the given elements.