rsc3/doc-schelp/HelpSource/Classes/IdentityBag.schelp

61 lines
1.7 KiB
Text

CLASS::IdentityBag
summary::A Bag according to identity
categories::Collections>Unordered
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 strong::identity::).
The contents of a IdentityBag are unordered. You must not depend on the order of items in a set.
INSTANCEMETHODS::
private::setDictionary
subsection::Adding and Removing
method::add
Add anObject to the Bag. A Bag may contain multiple entries of the same object.
code::
IdentityBag[1, 2, 3].add(4);
IdentityBag[1, 2, 3].add(3);
IdentityBag["abc", "def", "ghi"].add("jkl");
IdentityBag["abc", "def", "ghi"].add("def");
::
method::remove
Remove anObject from the IdentityBag.
code::
IdentityBag[1, 2, 3].remove(3);
::
method::contents
Returns the dictionary that stores the objects in pairs (obj -> numberOfObjects)
code::
IdentityBag[\a, \b, \c, \c].contents;
::
subsection::Iteration
method::do
Evaluates function for each item in the IdentityBag.
The function is passed two arguments, the item and an integer index.
code::
IdentityBag[1, 2, 3, 300].do({ arg item, i; item.postln });
::
section::Difference between Bag and IdentityBag
code::
// the two strings are equal, but not identical
"something" == "something"; // true
"something" === "something" // false
a = Bag.new;
a.add("something");
a.add("something");
a.contents; // only one object in the bag really
a = IdentityBag.new;
a.add("something");
a.add("something");
a.contents; // two objects in the bag
::