# File lib/hashery/castinghash.rb, line 59
  def <<(other)
    case other
    when Hash
      super(cast(other))
    when Array
      self[other[0]] = other[1]
    else
      raise ArgumentError
    end
  end