SORTS
The SORTS unit contains different sorting calls, all using the same high-speed method. The goal was to give you more than just the typical write it yourself approach or write a compare method and use a one-fits-all approach that some Pascal languages offer. Modern Pascal's sort unit was designed to assist with very common sorting needs, an array, a list, etc.
Globals
Functions
Procedures
QuickSortCardinalArray(Var Cardinals:TCardinalArray)
QuickSortInt64Array(Var Int64s:TInt64Array)
QuickSortIntegerArray(Var Integers:TIntegerArray)
QuickSortStringArray(Var Strings:TStringArray)
QuickSortWordArray(Var Words:TWordArray)