Never been to DZone Snippets before?

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

About this user

Patrick Hall http://ruphus.com/blog

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Zip two Arrays together into a Hash

Found this here:

http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/122906
 
def Hash.from_pairs_e(keys,values)
  hash = {}
  keys.size.times { |i| hash[ keys[i] ] = values[i] }
  hash
end 
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS