Navigation: Code Documentation > RSCommon > GLists > Classes > TGDoublyLinkedList
TGDoublyLinkedList Methods
Name
Description
Delete(TSQNode)
Deletes the specified node from the linked list. (Overrides GLists.TGCustomLinkedList.Delete(TSQNode).)
GetNode(Integer)
Represents method GetNode(Integer). (Overrides GLists.TGCustomLinkedList.GetNode(Integer).)
Insert(TSQNode,TSQNode)
Inserts the input ANode into the linked list. The node is inserted before the BeforeNode (i.e., ANode.Next := BeforeNode). (Overrides GLists.TGCustomLinkedList.Insert(TSQNode,TSQNode).)
NewNode
Creates a new node. The new node is not added to the linked list. (Overrides GLists.TGCustomLinkedList.NewNode.)
SetNode(Integer,TSQNode)
Represents method SetNode(Integer,TSQNode). (Overrides GLists.TGCustomLinkedList.SetNode(Integer,TSQNode).)
Top