DequeTAddManyToBack Method |
Adds a collection of items to the back of the Deque. The indices of all existing items
in the Deque are unchanged. The last item in the added collection becomes the
last item in the Deque.
Namespace: X3Platform.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic void AddManyToBack(
IEnumerable<T> collection
)
public:
void AddManyToBack(
IEnumerable<T>^ collection
)
Parameters
- collection
- Type: System.Collections.GenericIEnumerableT
The collection of item to add.
RemarksThis method takes time O(M), where M is the number of items in the
collection.
See Also