IQueue.Clone

Syntax

Clone: IQueue;

Description

The Clone method creates a copy of the queue.

Example

Sub UserProc;
Var
    Que, Que1: IQueue;
    i: Integer;
Begin
    Que := New Queue.Create;
    Que1 := New Queue.Create;
    For i := 0 To Math.RandBetweenI(50100Do
        Que.Enqueue("Value " + Math.RandBetweenI(0100).ToString);
    End For;
    Que1 := Que.Clone;
    Que.Clear;
End Sub UserProc;

After executing the example the Que1 queue contains a copy of the Que queue.

See also:

IQueue