recursive_array

Macro recursive_array 

Source
macro_rules! recursive_array {
    [] => { ... };
    [$item: expr $(,)?] => { ... };
    [$first_item: expr, $($item: expr),+] => { ... };
}
Expand description

a macro for instantiating a recursive array with the given elements.