IdentityBag:
Filter:
Classes | Collections > Unordered

IdentityBag : Bag : Collection : Object

A Bag according to identity
Source: Bag.sc

Description

An IdentityBag 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 identity).

The contents of a IdentityBag are unordered. You must not depend on the order of items in a set.

Class Methods

Inherited class methods

Instance Methods

Adding and Removing

.add(item, count: 1)

From superclass: Bag

Add anObject to the Bag. A Bag may contain multiple entries of the same object.

.remove(item, count: 1)

From superclass: Bag

Remove anObject from the IdentityBag.

.contents

From superclass: Bag

Returns the dictionary that stores the objects in pairs (obj -> numberOfObjects)

Iteration

.do(function)

From superclass: Bag

Evaluates function for each item in the IdentityBag. The function is passed two arguments, the item and an integer index.

Inherited instance methods

Difference between Bag and IdentityBag