| BigListT Class |
Namespace: Bio
The BigListT type exposes the following members.
| Name | Description | |
|---|---|---|
| BigListT |
Initializes a new instance of the BigList.
| |
| BigListT(IEnumerableT) |
Initializes a new instance of the BigList with elements from the specified collection.
| |
| BigListT(Int64) |
Initializes a new instance of the BigList with specified capacity.
| |
| BigListT(IEnumerableT, Int64) |
Initialize a new big list with a collection and known size.
|
| Name | Description | |
|---|---|---|
| Capacity |
Gets or sets the capacity.
| |
| Count |
Gets or sets the number of elements present in the BigList.
| |
| Item |
Gets or sets the element at the specified index.
|
| Name | Description | |
|---|---|---|
| Add |
Adds an object to the end of the BigList.
| |
| Clear |
Removes all elements from the BigList.
| |
| Contains |
Determines whether an element is in the BigList.
| |
| CopyTo(Int64, T, Int64) |
Copies a range of elements from the BigList to a compatible one-dimensional array.
| |
| CopyTo(Int64, T, Int32, Int64) |
Copies a range of elements from the BigList to a compatible one-dimensional array,
starting at the specified index of the destination array.
| |
| Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
| Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
| ForEach |
Performs the specified action on each element of the BigList.
| |
| GetEnumerator |
Returns an enumerator that iterates through the BigList.
| |
| GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
| GetType | Gets the Type of the current instance. (Inherited from Object.) | |
| IndexOf(T) |
Searches for the specified object and returns the zero-based index of the
first occurrence within the entire BigList.
| |
| IndexOf(T, Int64) |
Searches for the specified object and returns the zero-based index of the
first occurrence within the range of elements in the BigList
that extends from the specified index to the last element.
| |
| IndexOf(T, Int64, Int64) |
Searches for the specified object and returns the zero-based index of the
first occurrence within the range of elements in the BigList
that starts at the specified index and contains the specified number of elements.
| |
| Insert |
Inserts an element into the BigList at the specified index.
| |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
| Remove |
Removes the first occurrence of a specific object from the BigList.
| |
| RemoveAt |
Removes the element at the specified index of the BigList.
| |
| ToString | Returns a string that represents the current object. (Inherited from Object.) | |
| TrimExcess |
Sets the capacity to the actual number of elements in the BigList,
if that number is less than a threshold value.
| |
| TrimToSize |
Trims the list and removes all elements above newSize
|
| Name | Description | |
|---|---|---|
| AppendT(T) | Overloaded.
Yield an Enumeration of the list with the item appended to the end
(Defined by IEnumerableExtensions.) | |
| AppendT(IEnumerableT) | Overloaded.
Yield a concatenation of the two Enumerable lists
(Defined by IEnumerableExtensions.) | |
| ElementAtT |
Returns the element at a specified index in a sequence.
(Defined by IEnumerableExtensions.) | |
| ForEachT(ActionT) | Overloaded.
Calls an action on each element of a sequence. The action takes one argument: an element. It has no return value.
(Defined by IEnumerableExtensions.) | |
| ForEachT(ActionT, Int32) | Overloaded.
Calls an action on each element of a sequence. The action takes two arguments: an element and the index of the element.
It has no return value.
(Defined by IEnumerableExtensions.) | |
| ShuffleT |
Shuffles the elements of a sequence.
(Defined by IEnumerableExtensions.) | |
| StringJoin | Overloaded.
Creates a string from a sequence of elements. No delimiter is used.
(Defined by IEnumerableExtensions.) | |
| StringJoin(String) | Overloaded.
Creates a delimited string from a sequence of elements.
(Defined by IEnumerableExtensions.) | |
| StringJoin(String, Int32, String) | Overloaded.
Creates a delimited string from a sequence of elements. At most maxLength elements will be used and "..." shows that more elements were in the list.
(Defined by IEnumerableExtensions.) | |
| SubSequenceT |
Take the items from a sequence starting with item # start (index 0) and contining for count items.
(Defined by IEnumerableExtensions.) | |
| ToHashSetT | Overloaded.
Creates a HashSet from a sequence. If the sequence is already a HashSet, a new HashSet is still created.
(Defined by IEnumerableExtensions.) | |
| ToHashSetT(IEqualityComparerT) | Overloaded.
Creates a HashSet from a sequence. If the sequence is already a HashSet, a new HashSet is still created.
(Defined by IEnumerableExtensions.) | |
| ToQueueT |
Creates a Queue from a sequence. If the sequence is already a Queue, a new Queue is still created.
(Defined by IEnumerableExtensions.) |