Click or drag to resize
DequeTAddToBack Method
Adds an item to the back of the Deque. The indices of all existing items in the Deque are unchanged. This method is equivalent to Insert(Count, item) but is a little more efficient.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public void AddToBack(
	T item
)

Parameters

item
Type: T
The item to add.
Remarks
Adding an item to the back of the Deque takes a small constant amount of time, regardless of how many items are in the Deque.
See Also