Wintellect.PowerCollections Namespace
Algorithms Class
GhostDoc Pro Sample Help File

Deque<(Of <(<'T>)>)>..::..AddToFront Method

Adds an item to the front of the Deque. The indices of all existing items in the Deque are increased by 1. This method is equivalent to Insert(0, item) but is a little more efficient.

Namespace:  Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax


public void AddToFront(
	T item
)
Public Sub AddToFront ( _
	item As T _
)
public:
void AddToFront(
	T item
)

Parameters

item
Type: T
The item to add.

Remarks


Adding an item to the front of the Deque takes a small constant amount of time, regardless of how many items are in the Deque.