# File lib/hashery/basicstruct.rb, line 156 def <<(x) case x when Hash @table.update(x) when Array x.each_slice(2) do |(k,v)| @table[k] = v end end end