Skip to content

Instantly share code, notes, and snippets.

@denysonique
Created December 23, 2011 02:31
Show Gist options
  • Save denysonique/1512852 to your computer and use it in GitHub Desktop.
Save denysonique/1512852 to your computer and use it in GitHub Desktop.
class Array
def to_proc
lambda { |o| o.__send__(first, *self[1..-1]) }
end
end
1.9.3-p0 :031 > [1,2,3].map(&[:+, 1])
=> [2, 3, 4]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment