Click or drag to resize
DequeTClone Method
Creates a new Deque that is a copy of this one.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public Deque<T> Clone()

Return Value

Type: DequeT
A copy of the current deque.
Remarks
Copying a Deque takes O(N) time, where N is the number of items in this Deque..
See Also