Skip to content

Instantly share code, notes, and snippets.

@CrowdHailer
Created January 21, 2015 01:11
Show Gist options
  • Save CrowdHailer/294d5b069f78c6159a08 to your computer and use it in GitHub Desktop.
Save CrowdHailer/294d5b069f78c6159a08 to your computer and use it in GitHub Desktop.
Some fun with ruby currying
class Fixnum
alias_method :times, :*
def *(o=nil)
o.nil? ? ->(x){ times x } : times(o)
end
end
puts (11..14).map(&3.*)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment