Return to Unit UltiboClasses
Description
To be documented
Class definitions
[Expand]
TIntegerList = class(TObject)
Note: Same as a TStringList but for Integer values
|
|
constructor Create;
|
|
destructor Destroy; override;
|
|
private
|
FItems:TList;
|
|
function GetItem(Idx:Integer):Integer;
|
|
procedure SetItem(Idx,Value:Integer);
|
|
function GetCount:Integer;
|
|
public
|
property Items[Idx:Integer]:Integer read GetItem write SetItem;
|
|
property Count:Integer read GetCount;
|
|
function Add(AValue:Integer):Integer;
|
|
function Remove(AValue:Integer):Integer;
|
|
procedure Delete(Idx:Integer);
|
|
function IndexOf(AValue:Integer):Integer;
|
|
procedure Clear;
|
|
Function declarations
[Expand]
constructor TIntegerList.Create;
Description: To be documented
[Expand]
destructor TIntegerList.Destroy;
Description: To be documented
[Expand]
function TIntegerList.GetItem(Idx:Integer):Integer;
Description: To be documented
[Expand]
procedure TIntegerList.SetItem(Idx,Value:Integer);
Description: To be documented
[Expand]
function TIntegerList.GetCount:Integer;
Description: To be documented
[Expand]
function TIntegerList.Add(AValue:Integer):Integer;
Description: To be documented
[Expand]
function TIntegerList.Remove(AValue:Integer):Integer;
Description: To be documented
[Expand]
procedure TIntegerList.Delete(Idx:Integer);
Description: To be documented
[Expand]
function TIntegerList.IndexOf(AValue:Integer):Integer;
Description: To be documented
[Expand]
procedure TIntegerList.Clear;
Description: To be documented
Return to Unit Reference