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