linux: shared memory interface - link with librt
[supercollider.git] / HelpSource / Classes / SortedList.schelp
blobf3c5b6be355aa0b21e202eddb4a74ff22d6cf459
1 CLASS::SortedList
2 summary::a Collection whose items are kept in a sorted order.
3 categories::Collections>Ordered
5 CLASSMETHODS::
7 method::new
8 Creates a SortedList with the initial capacity given by strong::size:: and a comparison strong::function::.
10 INSTANCEMETHODS::
12 private::indexForInserting
14 method::add
15 Adds an item in the SortedList at the correct position.
16 code::
17 SortedList[1, 2, 5, 6].add(4).postln;
20 method::addAll
21 Adds all the items in the collection into the SortedList.
22 code::
23 SortedList[1, 2, 5, 6].addAll([0, 3, 4, 7]).postln;