As Aleksey points out, Hash#update() is slower than Hash#store(), but that got me thinking about the overall efficiency of #inject() vs a straight #each loop. So I benchmarked a few things:
(NOTE: Updated on 19 Sept 2012 to include #each_with_object)
the tests
require 'benchmark'
module HashInject
extend self
PAIRS = 1000.times.map {|i| [sprintf("s%05d",i).to_sym, i]}
def inject_store
PAIRS.inject({}) {|hash, sym, val| hash[sym] = val ; hash }
end
def inject_update
PAIRS.inject({}) {|hash, sym, val| hash.update(val => hash) }
end
def each_store
hash = {}
PAIRS.each {|sym, val| hash[sym] = val }
hash
end
def each_update
hash = {}
PAIRS.each {|sym, val| hash.update(val => hash) }
hash
end
def each_with_object_store
PAIRS.each_with_object({}) {|pair, hash| hash[pair[0]] = pair[1]}
end
def each_with_object_update
PAIRS.each_with_object({}) {|pair, hash| hash.update(pair[0] => pair[1])}
end
def tap_store
{}.tap {|hash| PAIRS.each {|sym, val| hash[sym] = val}}
end
def tap_update
{}.tap {|hash| PAIRS.each {|sym, val| hash.update(sym => val)}}
end
N = 10000
Benchmark.bmbm do |x|
x.report("inject_store") { N.times { inject_store }}
x.report("inject_update") { N.times { inject_update }}
x.report("each_store") { N.times {each_store }}
x.report("each_update") { N.times {each_update }}
x.report("each_with_object_store") { N.times {each_with_object_store }}
x.report("each_with_object_update") { N.times {each_with_object_update }}
x.report("tap_store") { N.times {tap_store }}
x.report("tap_update") { N.times {tap_update }}
end
end
the results
Rehearsal -----------------------------------------------------------
inject_store 10.950000 0.100000 11.050000 ( 11.060215)
inject_update 7.980000 0.230000 8.210000 ( 8.216127)
each_store 3.860000 0.120000 3.980000 ( 3.980254)
each_update 11.910000 0.340000 12.250000 ( 12.248365)
each_with_object_store 4.340000 0.140000 4.480000 ( 4.474610)
each_with_object_update 12.200000 0.350000 12.550000 ( 12.560445)
tap_store 3.930000 0.120000 4.050000 ( 4.048574)
tap_update 11.820000 0.330000 12.150000 ( 12.148164)
------------------------------------------------- total: 68.720000sec
user system total real
inject_store 10.900000 0.100000 11.000000 ( 11.005904)
inject_update 8.110000 0.220000 8.330000 ( 8.336604)
each_store 3.910000 0.130000 4.040000 ( 4.037863)
each_update 11.840000 0.320000 12.160000 ( 12.157069)
each_with_object_store 4.380000 0.120000 4.500000 ( 4.509750)
each_with_object_update 12.340000 0.310000 12.650000 ( 12.647315)
tap_store 3.980000 0.120000 4.100000 ( 4.094859)
tap_update 11.970000 0.300000 12.270000 ( 12.282202)
=> true
conclusion
Enumerable#each is faster than Enumerable#inject, and Hash#store is faster than Hash#update. So the winning version is exactly what the OP was suggesting:
hash = {}
PAIRS.each {|sym, val| hash[sym] = val }
hash
But if you're a purist who wants a single lexical form, you can use #tap and #each and get the same speed:
{}.tap {|hash| PAIRS.each {|sym, val| hash[sym] = val}}
For those not familiar with tap, it creates a binding of the receiver (the new hash) inside the body, and finally returns the receiver (the same hash). If you know Lisp, think of it as Ruby's version of LET binding.
-whew-. Thanks for listening.
postscript
Since people have asked, here's the testing environment:
# Ruby version 1.9.3 (x86_64-darwin10.8.0)
# OS Mac OS X 10.6.8
# Processor/RAM 2.6GHz Intel Core i7 / 8GB 1067 MHz DDR3
Hash[ some_enum.map{|e| [e.foo, e.bar]} ]– Marc-André Lafortune Jul 12 '10 at 20:46