BigArrayT Methods |
The BigArrayT generic type exposes the following members.
Name | Description | |
---|---|---|
![]() | Clear |
Sets all elements in the BigArray to zero, to false, or to null,
depending on the element type.
|
![]() | Clear(Int64, Int64) |
Sets a range of elements in the BigArray to zero, to false, or to null,
depending on the element type.
|
![]() | CopyTo(Int64, T, Int64) |
Copies a range of elements from the BigArray to a compatible one-dimensional array.
|
![]() | CopyTo(Int64, T, Int32, Int64) |
Copies a range of elements from the BigArray 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.) |
![]() | GetEnumerator |
Returns an enumerator that iterates through the BigArray.
|
![]() | 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 BigArray.
|
![]() | 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 BigArray
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 BigArray
that starts at the specified index and contains the specified number of elements.
|
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | Resize |
Changes the size of the BigArray to the specified new size.
|
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
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.) |