Skip to content

Instantly share code, notes, and snippets.

@emk
Created June 2, 2014 10:23
Show Gist options
  • Save emk/0e12337f64f4580b3af5 to your computer and use it in GitHub Desktop.
Save emk/0e12337f64f4580b3af5 to your computer and use it in GitHub Desktop.
try_opt!
macro_rules! try_opt(
($e:expr) => (match $e { Some(v) => v, None => return None });
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment