DequeTRemoveFromBack Method |
Removes an item from the back of the Deque. The indices of all existing items
in the Deque are unchanged. This method is
equivalent to RemoveAt(Count-1) but is a little more
efficient.
Namespace: X3Platform.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic T RemoveFromBack()
public:
T RemoveFromBack()
Return Value
Type:
T[Missing <returns> documentation for "M:X3Platform.Collections.Deque`1.RemoveFromBack"]
Exceptions
RemarksRemoving an item from the back of the Deque takes
a small constant amount of time, regardless of how many items are in the Deque.
See Also