Class HashBag<T>

All Implemented Interfaces:
Externalizable, Serializable, Iterable<T>, Collection<T>, Bag<T>, MutableBag<T>, MutableBagIterable<T>, UnsortedBag<T>, MutableCollection<T>, InternalIterable<T>, RichIterable<T>

public class HashBag<T> extends AbstractHashBag<T> implements Externalizable
A HashBag is a MutableBag which uses a Map as its underlying data store. Each key in the Map represents some item, and the value in the map represents the current number of occurrences of that item.
Since:
1.0
See Also: