Wintellect.PowerCollections Namespace
Algorithms Class
GhostDoc Pro Sample Help File

Deque<(Of <(<'T>)>)>..::..CloneContents Method

Makes a deep clone of this Deque. A new Deque is created with a clone of each element of this set, by calling ICloneable.Clone on each element. If T is a value type, then each element is copied as if by simple assignment.

Namespace:  Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax


public Deque<T> CloneContents()
Public Function CloneContents As Deque(Of T)
public:
Deque<T>^ CloneContents()

Return Value

The cloned Deque.

Exceptions


ExceptionCondition
InvalidOperationExceptionT is a reference type that does not implement ICloneable.

Remarks


If T is a reference type, it must implement ICloneable. Otherwise, an InvalidOperationException is thrown.

Cloning the Deque takes time O(N), where N is the number of items in the Deque.