TLinkedList

From Ultibo.org
Jump to: navigation, search

Return to Unit UltiboClasses


Description


To be documented

Class definitions



[Expand]

TLinkedList = class(TObject)


Function declarations



[Expand]
constructor TLinkedList.Create;
Description: To be documented


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


[Expand]
function TLinkedList.GetCount:Integer;
Description: To be documented


[Expand]
function TLinkedList.Link(AValue:TListObject):Boolean;
Description: Link AValue to Prev,Next Siblings and Adjust First/Last


[Expand]
function TLinkedList.LinkEx(APrev,AValue:TListObject):Boolean;
Description: Link AValue after APrev Sibling and Adjust First/Last/Prev/Next


[Expand]
function TLinkedList.Unlink(AValue:TListObject):Boolean;
Description: Unlink AValue from Prev,Next Siblings and Adjust First/Last


[Expand]
function TLinkedList.Add(AValue:TListObject):Boolean;
Description: Add AValue to List and link with Siblings


[Expand]
function TLinkedList.Remove(AValue:TListObject):Boolean;
Description: Unlink AValue from Siblings and Remove from List


[Expand]
function TLinkedList.Insert(APrev,AValue:TListObject):Boolean;
Description: To be documented


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


Return to Unit Reference