linux: shared memory interface - link with librt
[supercollider.git] / HelpSource / Classes / IdentityBag.schelp
blob54b0d9cdd2d53224e9b566ebe5b0351ff7c33612
1 CLASS::IdentityBag
2 summary::A Bag according to identity
3 categories::Collections>Unordered
5 DESCRIPTION::
6 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::).
8 The contents of a IdentityBag are unordered. You must not depend on the order of items in a set.
10 INSTANCEMETHODS::
12 private::setDictionary
14 subsection::Adding and Removing
16 method::add
17 Add anObject to the Bag. A Bag may contain multiple entries of the same object.
18 code::
19 IdentityBag[1, 2, 3].add(4);
20 IdentityBag[1, 2, 3].add(3);
21 IdentityBag["abc", "def", "ghi"].add("jkl");
22 IdentityBag["abc", "def", "ghi"].add("def");
25 method::remove
26 Remove anObject from the IdentityBag.
27 code::
28 IdentityBag[1, 2, 3].remove(3);
31 method::contents
32 Returns the dictionary that stores the objects in pairs (obj -> numberOfObjects)
33 code::
34 IdentityBag[\a, \b, \c, \c].contents;
37 subsection::Iteration
39 method::do
40 Evaluates function for each item in the IdentityBag.
41 The function is passed two arguments, the item and an integer index.
42 code::
43 IdentityBag[1, 2, 3, 300].do({ arg item, i; item.postln });
48 section::Difference between Bag and IdentityBag
49 code::
50 // the two strings are equal, but not identical
51 "something" == "something"; // true
52 "something" === "something" // false
54 a = Bag.new;
55 a.add("something");
56 a.add("something");
57 a.contents; // only one object in the bag really
59 a = IdentityBag.new;
60 a.add("something");
61 a.add("something");
62 a.contents; // two objects in the bag