Skip to content

Instantly share code, notes, and snippets.

@jneen
Created May 10, 2011 18:49
Show Gist options
  • Save jneen/965133 to your computer and use it in GitHub Desktop.
Save jneen/965133 to your computer and use it in GitHub Desktop.
methods as blocks
def negative(a)
-a
end
# whee!
[1,2,3].sort_by &method(:negative) # => [3,2,1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment