Skip to content

Instantly share code, notes, and snippets.

@tilpner
Created July 22, 2016 20:27
Show Gist options
  • Save tilpner/37a1be0e9a5ab9534caf23e571d5f1d5 to your computer and use it in GitHub Desktop.
Save tilpner/37a1be0e9a5ab9534caf23e571d5f1d5 to your computer and use it in GitHub Desktop.
macro_rules! attr_each {
($attr: meta for $($i: item)*) => {
$(
#[$attr]
$i
)*
}
}
attr_each! {
doc = "foo" for
pub fn foo() {}
pub fn bar() {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment