Click or drag to resize
DequeTRemoveFromFront Method
Removes an item from the front of the Deque. The indices of all existing items in the Deque are decreased by 1. This method is equivalent to RemoveAt(0) 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 T RemoveFromFront()

Return Value

Type: T
The item that was removed.
Exceptions
ExceptionCondition
InvalidOperationExceptionThe Deque is empty.
Remarks
Removing an item from the front of the Deque takes a small constant amount of time, regardless of how many items are in the Deque.
See Also