class Hashie::Clash

def initialize(other_hash = {}, parent = nil)

Clash is chained.
convert and, optionally, the parent to which this
Initialize a new clash by passing in a Hash to
def initialize(other_hash = {}, parent = nil)
  @_parent = parent
  other_hash.each_pair do |k, v|
    self[k.to_sym] = v
  end
end