tumbl(dot)
Array to Hash (with a splat)
> pairs = [:a, 1, :b, 2, :c, 3] > Hash[*pairs] => {:b=>2, :c=>3, :a=>1}
Jun 28 2008
Text