Retreives the item currently at the back of the Deque. The Deque is
unchanged. This method is
equivalent to deque[deque.Count - 1] (except that a different exception is thrown).
Namespace: X3Platform.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
SyntaxReturn Value
Type:
TThe item at the back of the Deque.
Exceptions
RemarksRetreiving the item at the back of the Deque takes
a small constant amount of time, regardless of how many items are in the Deque.
See Also