4

I have array that element is hash

a = [{:history_date=>"15/07/10"}, {:open_price=>"7.90"}]

I want to convert to this

h = {:history_date=>"15/07/10", :open_price=>"7.90"}

someone please help me.

1 Answer 1

6

How about:

h = a.inject(&:merge)

Each hash in the array is merged into the previous hash until we get down to one element. &:merge is shorthand for the following, which may be easier to understand, but is slightly longer:

h = a.inject { |all, element| all.merge(element) }
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.