Skip to content

Instantly share code, notes, and snippets.

@eaglgenes101
Created September 8, 2018 02:10
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 eaglgenes101/5c9d5441880aa0d653773f6a41cc25f0 to your computer and use it in GitHub Desktop.
Save eaglgenes101/5c9d5441880aa0d653773f6a41cc25f0 to your computer and use it in GitHub Desktop.
macro_rules! mass_assign {
(
( $( $elm:ident ),* );
$tree:expr
) => {
$( let $elm = $tree; ),*
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment