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
macro_rules! match_out {
{
$($p:pat => $e:expr),+ $(,)?
} => { ... };
}Make a mapping parser that chooses the path based on the current output of the parser. The usage