Skip to content

Instantly share code, notes, and snippets.

@Fullstop000
Created February 18, 2019 07:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fullstop000/1735b06f10f3fc34bc17dcc8f0882db3 to your computer and use it in GitHub Desktop.
Save Fullstop000/1735b06f10f3fc34bc17dcc8f0882db3 to your computer and use it in GitHub Desktop.
#[macro_export]
macro_rules! invarint {
($condition:expr, $($arg:tt)*) => {
if !$condition {
panic!($($arg)*);
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment