Provides lists for Integer data types implemented using generics

The classes provide 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.

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.

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.

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.

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.

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.

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.

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.

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.

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.