Class TIntegerHashtable

Declaration
TIntegerHashtable = class(THashtable)
  constructor Create;
  destructor Destroy;
  function Get(Key: Integer): TObject;
  function HasKey(Key: Integer): Boolean;
  procedure Put(Key: Integer; Value: TObject);
  function RemoveKey(Key: Integer): TObject;
end;
Description

Hashtable to store key-value pairs. The key is an integer and the value an object of type TObject.


Method TIntegerHashtable.Create

Declaration
constructor Create;
Description



Method TIntegerHashtable.Destroy

Declaration
destructor Destroy;
Description



Method TIntegerHashtable.Get

Declaration
function Get(Key: Integer): TObject;
Description



Method TIntegerHashtable.HasKey

Declaration
function HasKey(Key: Integer): Boolean;
Description



Method TIntegerHashtable.Put

Declaration
procedure Put(Key: Integer; Value: TObject);
Description



Method TIntegerHashtable.RemoveKey

Declaration
function RemoveKey(Key: Integer): TObject;
Description