| Class | HashBag |
| In: |
lib/hash_bag.rb
|
| Parent: | Hash |
# File lib/hash_bag.rb, line 9
9: def []=(key, value)
10: count = count(key)
11: count = count + 1
12: @counts[key] = count
13: super
14: end