Unit 'flcDataStructs' Package
[Overview][Constants][Types][Classes][Procedures and functions][Index] [#pl_fundamentals]

TDoublyLinkedList

[Properties (by Name)] [Methods (by Name)] [Events (by Name)]

Declaration

Source position: flcDataStructs.pas line 8458

type TDoublyLinkedList = class

protected

  FFirst: TDoublyLinkedItem;

  

  FLast: TDoublyLinkedItem;

  

  FCount: Integer;

  

public

  destructor Destroy; override;

  

  property First: TDoublyLinkedItem; [r]

  

  property Last: TDoublyLinkedItem; [r]

  

  function IsEmpty;

  

  property Count: Integer; [r]

  

  procedure Remove();

  

  function RemoveFirst;

  

  function RemoveLast;

  

  procedure Delete();

  

  procedure DeleteFirst;

  

  procedure DeleteLast;

  

  procedure DeleteList;

  

  procedure Append();

  

  procedure InsertFront();

  

end;

Inheritance

TDoublyLinkedList

  

|

TObject



CT Web help

CodeTyphon Studio