Forgot a help fix: Drag a dock's title bar, not divider, to reposition
[supercollider.git] / HelpSource / Overviews / Collections.schelp
blobd3fca0fc7bda25b1599314857b9c178d0268e5ae
1 title:: Collections
2 summary:: A hierarchical overview of Collection subclasses
3 categories:: Collections
4 related:: Classes/Collection
6 SuperCollider has a rich hierarchy of Collection subclasses, detailed below. Subclasses of a given class are indented (sub-lists) relative to the class. Classes labelled "abstract" are not for direct use, but classes lower down the tree may inherit methods from them. For this reason it is important to consult the helpfiles of classes farther up the tree in order to get a complete list of available methods.
8 section:: Hierarchy
10 classtree::Collection
12 subsection:: Notes
14 definitionlist::
15 ## link::Classes/List::
16 || is an expandable link::Classes/SequenceableCollection:: (compare to link::Classes/ArrayedCollection:: and link::Classes/Array::).
17 ## link::Classes/Array::
18 || is more efficient than link::Classes/List::.
19 ## link::Classes/SparseArray::
20 || is an array of elements optimized for huge gaps between them.
21 ## link::Classes/TwoWayIdentityDictionary::
22 || is similar to link::Classes/IdentityDictionary:: and allows easy searching by both key and value. It is faster than link::Classes/IdentityDictionary:: on reverse lookup, but with more memory overhead.
23 ## link::Classes/Environment::
24 || is an link::Classes/IdentityDictionary::, one of which is always current; useful for creating sets of persistent variables.
25 ## link::Classes/Event::
26 || is a dictionary mapping names of musical parameters to their values.
27 ## link::Classes/IdentitySet::
28 || is an unordered collection of unidentical objects (compare to link::Classes/Set::).