# File multiset.rb, line 561
  def merge!(other)
    other.each_pair do |item, count|
      self.add(item, count)
    end
    self
  end