Class TGenQueue
Unit
GContnrs
Declaration
type generic TGenQueue<_TItem_,_TContainer_> = class(TContainer)
Description
no description available, TContainer description follows Hierarchy
Overview
Methods
Properties
 |
property Size : Integer read GetSize; |
Description
Methods
 |
procedure Append(const Item: _TItem_); |
Add the item to the back of the queue.
|
 |
procedure Clear; |
Empty the queue of all items.
|
 |
constructor Create; |
Creates an empty queue.
|
 |
destructor Destroy; override; |
Destroys the container.
|
 |
function Front : _TItem_; |
Returns a copy of the item at the front of the queue.
|
 |
function IsEmpty: Boolean; inline; |
Returns true if the queue is empty.
|
 |
procedure Pop; |
Removes the item from the front of the queue.
|
 |
procedure ReadFront(out Value: _TItem_); |
|
Properties
 |
property Size : Integer read GetSize; |
Number of items.
|
Generated by PasDoc 0.13.0 on 2014-07-29 16:12:40
|