This file is indexed.

/usr/share/SuperCollider/HelpSource/Overviews/Collections.schelp is in supercollider-common 1:3.8.0~repack-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
title:: Collections
summary:: A hierarchical overview of Collection subclasses
categories:: Collections
related:: Classes/Collection

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.

section:: Hierarchy

classtree::Collection

subsection:: Notes

definitionlist::
## link::Classes/List::
|| is an expandable link::Classes/SequenceableCollection:: (compare to link::Classes/ArrayedCollection:: and link::Classes/Array::).
## link::Classes/Array::
|| is more efficient than link::Classes/List::.
## link::Classes/SparseArray::
|| is an array of elements optimized for huge gaps between them.
## link::Classes/TwoWayIdentityDictionary::
|| 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.
## link::Classes/Environment::
|| is an link::Classes/IdentityDictionary::, one of which is always current; useful for creating sets of persistent variables.
## link::Classes/Event::
|| is a dictionary mapping names of musical parameters to their values.
## link::Classes/IdentitySet::
|| is an unordered collection of unidentical objects (compare to link::Classes/Set::).
::