Skip to content

Instantly share code, notes, and snippets.

@danieldk
Created April 20, 2019 06:57
Show Gist options
  • Select an option

  • Save danieldk/0c2e60b66d19bb5db0d32e7f199d7f59 to your computer and use it in GitHub Desktop.

Select an option

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