Skip to content

Instantly share code, notes, and snippets.

@brson
Created November 19, 2012 20:34
Show Gist options
  • Save brson/4113704 to your computer and use it in GitHub Desktop.
Save brson/4113704 to your computer and use it in GitHub Desktop.
macro_item_rules! int_template (
($self:path) => {
mod $name {
pub pure fn min(x: $self, y: $self) -> $self { if x < y { x } else { y } }
}
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment