method

to_hash

to_hash()
public

No documentation available.

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