macro_rules! opt_filter {
($e:expr, |$param:pat_param| $v:expr $(,)?) => { ... };
($opt:expr, | $($anything:tt)* ) => { ... };
($e:expr, $function:path $(,)?) => { ... };
}
macro_rules! opt_filter {
($e:expr, |$param:pat_param| $v:expr $(,)?) => { ... };
($opt:expr, | $($anything:tt)* ) => { ... };
($e:expr, $function:path $(,)?) => { ... };
}