Click or drag to resize
DequeTGetAtFront Method
Retreives the item currently at the front of the Deque. The Deque is unchanged. This method is equivalent to deque[0] (except that a different exception is thrown).

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

Return Value

Type: T
The item at the front of the Deque.
Exceptions
ExceptionCondition
InvalidOperationExceptionThe Deque is empty.
Remarks
Retreiving the item at the front of the Deque takes a small constant amount of time, regardless of how many items are in the Deque.
See Also