Click or drag to resize
BigListTAddRangeToFront Method (IEnumerableT)
Adds a collection of items to the front of BigList. The indices of all existing items in the are increased by the number of items in collection. The first item in the added collection becomes the first item in the BigList.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public void AddRangeToFront(
	IEnumerable<T> collection
)

Parameters

collection
Type: System.Collections.GenericIEnumerableT
The collection of items to add.
Exceptions
ExceptionCondition
ArgumentNullExceptioncollection is null.
Remarks
This method takes time O(M + log N), where M is the number of items in the collection, and N is the size of the BigList.
See Also