intermodal/src/matches.rs
Casey Rodarmor 98335f435d
Initial commit
type: added
2020-04-07 18:55:30 -07:00

9 lines
192 B
Rust

macro_rules! matches {
($expression:expr, $( $pattern:pat )|+ $( if $guard: expr )?) => {
match $expression {
$( $pattern )|+ $( if $guard )? => true,
_ => false
}
}
}