[Overview][Constants][Types][Classes][Procedures and functions][Index] |
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Pointer queue
Source position: contnrs.pp line 167
type TQueue = class(TOrderedList) |
end; |
|
Pointer queue |
|
| | ||
|
Base class for queues and stacks. |
|
| | ||
TQueue is a descendent of TOrderedList which implements Push and Pop behaviour as a queue: what is first pushed on the queue, is popped of first (FIFO: First in, first out).
TQueue offers no new methods, it merely implements some abstract methods introduced by TOrderedList
|
Base class for queues and stacks. |
|
|
Pointer Stack |