imdl 0.1.16

📦 A 40' shipping container for the internet
Documentation
1
2
3
4
5
6
7
8
macro_rules! matches {
  ($expression:expr, $( $pattern:pat )|+ $( if $guard: expr )?) => {
    match $expression {
      $( $pattern )|+ $( if $guard )? => true,
      _ => false
    }
  }
}