+ The following features and functionality are currently implemented: +
++ TCompWriterPas is used in the implementation of the TCustomFormEditor class in the Lazarus IDE. +
++ Author: Mattias Gaertner +
++ 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. +
++ TByteList provides an overloaded Sort method to ensure that values in the list are handled using a compare function that operates on Byte values. +
++ Sort is an overloaded method in TByteList which calls the inherited method using the CompareByte function in the implementation section. +
++ TWordList provides an overloaded Sort method to ensure that values in the list are handled using a compare function that operates on Word values. +
++ Sort is an overloaded method in TWordList which calls the inherited method using the CompareWord function in the implementation section. +
++ TCardinalList provides an overloaded Sort method to ensure that values in the list are handled using a compare function that operates on Cardinal values. +
++ Sort is an overloaded method in TCardinalList which calls the inherited method using the CompareCardinal function in the implementation section. +
++ TIntegerList provides an overloaded Sort method to ensure that values in the list are handled using a compare function that operates on Integer values. +
++ Sort is an overloaded method in TIntegerList which calls the inherited method using the CompareInteger function in the implementation section. +
++ TInt64List provides an overloaded Sort method to ensure that values in the list are handled using a compare function that operates on Int64 values. +
++ Sort is an overloaded method in TInt64List which calls the inherited method using the CompareInt64 function in the implementation section. +
+
+ Values in the unit are used as the basis for corresponding LCL version numbers in the