Skip to content

Instantly share code, notes, and snippets.

@danieldk
Created March 12, 2018 10:02
Show Gist options
  • Select an option

  • Save danieldk/7fe95707c0cb911cd0f8a5ead1c97e5c to your computer and use it in GitHub Desktop.

Select an option

Save danieldk/7fe95707c0cb911cd0f8a5ead1c97e5c to your computer and use it in GitHub Desktop.
macro_rules! ok_or {
($expr:expr, $stmt:stmt) => (match $expr {
Some(val) => val,
None => {$stmt}
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment