Provides lists for Integer data types implemented using generics.

integerlist.pas contains a list for Integer values implemented using generics, and provides the same methods and properties for Integer types as provided for Strings in TStringList. They provide an overloaded Sort method to ensure that the specialization types are handled in the methods.

Implements a specialization of TFPGList for Byte data types.

TByteList provides an overloaded Sort method to ensure that values in the list are handled using a compare function that operates on Byte values.

TFPGList
Sorts the Byte values stored in the list.

Sort is an overloaded method in TByteList which calls the inherited method using the CompareByte function in the implementation section.

TFPGList.Sort
Implements a specialization of TFPGList for Word data types.

TWordList provides an overloaded Sort method to ensure that values in the list are handled using a compare function that operates on Word values.

TFPGList
Sorts the Word values stored in the list.

Sort is an overloaded method in TWordList which calls the inherited method using the CompareWord function in the implementation section.

TFPGList.Sort
Implements a specialization of TFPGList for Cardinal data types.

TCardinalList provides an overloaded Sort method to ensure that values in the list are handled using a compare function that operates on Cardinal values.

TFPGList.Sort TFPGList
Sorts the Word values stored in the list.

Sort is an overloaded method in TCardinalList which calls the inherited method using the CompareCardinal function in the implementation section.

TFPGList.Sort
Implements a specialization of TFPGList for Integer data types.

TIntegerList provides an overloaded Sort method to ensure that values in the list are handled using a compare function that operates on Integer values.

TFPGList.Sort TFPGList
Sorts the Integer values stored in the list.

Sort is an overloaded method in TIntegerList which calls the inherited method using the CompareInteger function in the implementation section.

TFPGList.Sort
Implements a specialization of TFPGList for Int64 data types.

TInt64List provides an overloaded Sort method to ensure that values in the list are handled using a compare function that operates on Int64 values.

TFPGList TFPGList.Sort
Sorts the Int64 values stored in the list.

Sort is an overloaded method in TInt64List which calls the inherited method using the CompareInt64 function in the implementation section.

TFPGList.Sort