Skip to content

Instantly share code, notes, and snippets.

@Geal
Created March 19, 2017 21:29
Show Gist options
  • Save Geal/c06401f91ee901daf8db814954935ab9 to your computer and use it in GitHub Desktop.
Save Geal/c06401f91ee901daf8db814954935ab9 to your computer and use it in GitHub Desktop.
macro_rules! default_incomplete (
($i: expr, $submac:ident!( $($args:tt)* ), $default: expr) => {
match $submac($i, $($args)*) {
IResult::Incomplete(_) => IResult::Done($i, $default),
other => other
}
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment