defaults.spad line 56 [edit on github]
This package exports 3 sorting algorithms which work over FiniteLinearAggregates.
heapSort(f, agg) sorts the aggregate agg with the ordering function f using the heapsort algorithm.
quickSort(f, agg) sorts the aggregate agg with the ordering function f using the quicksort algorithm.
shellSort(f, agg) sorts the aggregate agg with the ordering function f using the shellSort algorithm.