class Temple::MutableHash

@api public
Mutable hash class which supports hash merging

def []=(key, value)

def []=(key, value)
  @hash.first[key] = value
end

def initialize(*hash)

def initialize(*hash)
  super({}, *hash)
end

def update(hash)

def update(hash)
  @hash.first.update(hash)
end