Skip to content

Instantly share code, notes, and snippets.

@radamant
Created July 29, 2011 17:49
Show Gist options
  • Save radamant/1114333 to your computer and use it in GitHub Desktop.
Save radamant/1114333 to your computer and use it in GitHub Desktop.
Alias Enumerable#map to Enumerable#transform
>> module Enumerable
>> alias_method :transform, :map
>> end
=> Enumerable
>> names.transform{|n| n.upcase}
=> ["FRYE", "BENDER", "LEELA", "ZOIDBERG"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment