2 summary::a Collection whose items are kept in a sorted order.
3 categories::Collections>Ordered
8 Creates a SortedList with the initial capacity given by strong::size:: and a comparison strong::function::.
12 private::indexForInserting
15 Adds an item in the SortedList at the correct position.
17 SortedList[1, 2, 5, 6].add(4).postln;
21 Adds all the items in the collection into the SortedList.
23 SortedList[1, 2, 5, 6].addAll([0, 3, 4, 7]).postln;