mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
12 lines
262 B
Rust
12 lines
262 B
Rust
// edition:2018
|
|
|
|
#[macro_export]
|
|
macro_rules! custom_matches {
|
|
($expression:expr, $( $pattern:pat )|+ $( if $guard: expr )? $(,)?) => {
|
|
match $expression {
|
|
$( $pattern )|+ $( if $guard )? => true,
|
|
_ => false
|
|
}
|
|
}
|
|
}
|