[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Pointer Stack.
Source position: contnrs.pp line 159
| type TStack = class(TOrderedList) | 
| end; | 
| 
 | Pointer Stack. | |
| | | ||
| 
 | Base class for queues and stacks. | |
| | | ||
TStack is a descendent of TOrderedList which implements Push and Pop behaviour as a stack: what is last pushed on the stack, is popped of first (LIFO: Last in, first out).
TStack offers no new methods, it merely implements some abstract methods introduced by TOrderedList
| 
 | Base class for queues and stacks. | |
| 
 | Object instances stack. | |
| 
 | Pointer queue. |