macro_rules! m {
{ $l:expr, $re:expr $(,)? } => { ... };
}
Expand description
fn m!(l: &str, re: &str) -> bool
: does regexp re
match in l
?
macro_rules! m {
{ $l:expr, $re:expr $(,)? } => { ... };
}
fn m!(l: &str, re: &str) -> bool
: does regexp re
match in l
?