BigListTAddRangeToFront Method (BigListT) |
Adds a BigList of items to the front of BigList. The indices of all existing items
are increased by the number of items in list. The first item in list
becomes the first item in this list. The added list list is unchanged.
Namespace: X3Platform.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic void AddRangeToFront(
BigList<T> list
)
public:
void AddRangeToFront(
BigList<T>^ list
)
Parameters
- list
- Type: X3Platform.CollectionsBigListT
The list of items to add.
Exceptions
RemarksThis method takes, on average, constant time, regardless of the size
of either list. Although conceptually all of the items in list are
copied, storage is shared between the two lists until changes are made to the
shared sections.
See Also