Mapping hash values
1 2 class Hash 3 def hmap 4 each_pair do |key, value| 5 store key, yield(value) 6 end 7 end 8 end
DZone Snippets > infrared > hash
12727 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
MichaĆ Kwiatkowski http://joker.linuxstuff.pl
1 2 class Hash 3 def hmap 4 each_pair do |key, value| 5 store key, yield(value) 6 end 7 end 8 end