IDeque<T>.AddLast Method

Definition

Adds an element to the back of the deque.

Delphi
function AddLast(const item: T): Boolean

Parameters

item
T

The element to add to the deque. The value can be nil for reference types.

Returns

Boolean

True if the element was added, False otherwise.