Mutable hash class which supports hash merging @api public
# File lib/temple/hash.rb, line 36 def initialize(*hash) super({}, *hash) end
# File lib/temple/hash.rb, line 40 def []=(key, value) @hash.first[key] = value end
# File lib/temple/hash.rb, line 44 def update(hash) @hash.first.update(hash) end