Macro genco::nested [] [src]

macro_rules! nested {
    ($dest:expr, $($x:expr),*) => { ... };
    ($dest:expr, $($x:expr,)*) => { ... };
}

Helper macro to reduce boilerplate needed with nested token expressions.