THashLinkedList
From Ultibo.org
Revision as of 05:44, 31 May 2018 by Ultibo (Talk | contribs) (Created page with "Return to Unit UltiboClasses __TOC__ === Description === ---- ''To be documented'' === Class definitions === ---- <div class="toccolours mw-colla...")
Return to Unit UltiboClasses
Description
To be documented
Class definitions
[Expand]
THashLinkedList = class(TLinkedList)
Function declarations
[Expand]
function THashLinkedList.KeyLink(AValue:THashListObject):Boolean;
Description: Link AValue to Prev,Next Keys and Adjust First
[Expand]
function THashLinkedList.KeyUnlink(AValue:THashListObject):Boolean;
Description: Unlink AValue from Prev,Next Keys and Adjust First
[Expand]
function THashLinkedList.KeyFirst(AKeyHash:LongWord):THashListObject;
Description: To be documented
[Expand]
function THashLinkedList.Add(AValue:TListObject):Boolean;
Description: Add AValue to List and link with Siblings
[Expand]
function THashLinkedList.Remove(AValue:TListObject):Boolean;
Description: Unlink AValue from Siblings and Remove from List
[Expand]
function THashLinkedList.Insert(APrev,AValue:TListObject):Boolean;
Description: To be documented
Return to Unit Reference