sc ide: unify font and color configuration panels
[supercollider.git] / HelpSource / Classes / IdentityBag.schelp
blob486c46cb9fa5a2de1f4bf898b7431eeef173a147
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 });
46 section::Difference between Bag and IdentityBag
47 code::
48 // the two strings are equal, but not identical
49 "something" == "something"; // true
50 "something" === "something" // false
52 a = Bag.new;
53 a.add("something");
54 a.add("something");
55 a.contents; // only one object in the bag really
57 a = IdentityBag.new;
58 a.add("something");
59 a.add("something");
60 a.contents; // two objects in the bag