System.Contnrs.TOrderedList
Delphi
TOrderedList = class(TObject)
C++
class PASCALIMPLEMENTATION TOrderedList : public System::TObject
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
class | public | System.Contnrs.pas System.Contnrs.hpp |
System.Contnrs | System.Contnrs |
Description
TOrderedList maintains an array of pointers that must be accessed in serial order.
TOrderedList is an abstract class that represents a list. Descendent classes like TStack and TQueue override the protected PushItem method to determine the order in which to access items.