Rails mapping array of hashes onto single hash

后端 未结 4 1153
情书的邮戳
情书的邮戳 2021-01-30 12:08

I have an array of hashes like so:

 [{\"testPARAM1\"=>\"testVAL1\"}, {\"testPARAM2\"=>\"testVAL2\"}]

And I\'m trying to map this onto sin

4条回答
  •  情书的邮戳
    2021-01-30 13:01

    You could compose Enumerable#reduce and Hash#merge to accomplish what you want.

    input = [{"testPARAM1"=>"testVAL1"}, {"testPARAM2"=>"testVAL2"}]
    input.reduce({}, :merge)
      is {"testPARAM2"=>"testVAL2", "testPARAM1"=>"testVAL1"}
    

    Reducing an array sort of like sticking a method call between each element of it.

    For example [1, 2, 3].reduce(0, :+) is like saying 0 + 1 + 2 + 3 and gives 6.

    In our case we do something similar, but with the merge function, which merges two hashes.

    [{:a => 1}, {:b => 2}, {:c => 3}].reduce({}, :merge)
      is {}.merge({:a => 1}.merge({:b => 2}.merge({:c => 3})))
      is {:a => 1, :b => 2, :c => 3}
    

提交回复
热议问题