Difference between revisions of "THashLinkedList"

From Ultibo.org
Jump to: navigation, search
(Created page with "Return to Unit UltiboClasses __TOC__ === Description === ---- ''To be documented'' === Class definitions === ---- <div class="toccolours mw-colla...")
 
 
Line 35: Line 35:
 
|-
 
|-
 
| <code>FKeyMask:LongWord;</code>
 
| <code>FKeyMask:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>FKeyShift:LongWord;</code>
 
| &nbsp;
 
| &nbsp;
 
|-
 
|-

Latest revision as of 05:26, 21 June 2023

Return to Unit UltiboClasses


Description


To be documented

Class definitions



[Expand]

THashLinkedList = class(TLinkedList)


Function declarations



[Expand]
constructor THashLinkedList.Create(AKeyBits:Byte);
Description: To be documented


[Expand]
destructor THashLinkedList.Destroy;
Description: To be documented


[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


[Expand]
procedure THashLinkedList.Clear;
Description: To be documented


Return to Unit Reference