# File lib/multiset.rb, line 80
  def add(o)
    @hash[o] ||= 0
    @hash[o] += 1
    self
  end