Macro unzipped

Source
macro_rules! unzipped {
    ($head: pat $(,)?) => { ... };
    ($head: pat, $($tail: pat),* $(,)?) => { ... };
}
Expand description

Used to undo the zipping by the zipped! macro.