Macro match_out

Source
macro_rules! match_out {
    {
        $($p:pat => $e:expr),+ $(,)?
    } => { ... };
}
Expand description

Make a mapping parser that chooses the path based on the current output of the parser. The usage