A Bag is an unordered collection of objects. In some languages it is referred to as a counted set. A Bag keeps track of the number of times objects are inserted and requires that objects be removed the same number of times. There is only one instance of an object in a Bag even if the object has been added to the Bag multiple times (test is for equality)
Most of Bag's methods are inherited from Collection. The contents of a Bag are unordered. You must not depend on the order of items in a set.
Creates a Bag with an initial capacity for n objects.
Returns the dictionary that stores the objects in pairs (obj -> numberOfObjects)
Count the number of items.
Add an object to the Bag. A Bag may contain multiple entries of the same object.
Remove an object from the Bag.
Evaluates function for each item in the Bag. The function is passed two arguments, the item and an integer index.
function |
args to function: item, i |
Evaluates function for each unique item in the Bag along with that item's count. The function is passed two arguments, the item, the quantity of that item in the Bag and an integer index.