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