Creates a SortedList with the initial capacity given by size and a comparison function. The SortedList can contain equal / identical elements more than once.
Adds an item in the SortedList at the correct position.
SortedList[1, 2, 5, 6].add(4).postln;
Adds all the items in the collection into the SortedList.
xxxxxxxxxx
SortedList[1, 2, 5, 6].addAll([0, 3, 4, 7]).postln;