new(constructor = {})
public

No documentation available.

# File activesupport/lib/active_support/hash_with_indifferent_access.rb, line 58
    def initialize(constructor = {})
      if constructor.respond_to?(:to_hash)
        super()
        update(constructor)
      else
        super(constructor)
      end
    end