method
to_hash
to_hash()
public
Hide source
# File activesupport/lib/active_support/ordered_hash.rb, line 37 def to_hash returning({}) do |hash| each { |array| hash[array[0]] = array[1] } end end


