| Method |
Description |
| Add |
Appends an element to the end of this list.
|
| AddNoResize |
Appends an element to the end of this list.
|
| AddRange |
Appends the elements of an array to the end of this list.
|
| AddRangeNoResize |
Appends elements from a buffer to the end of this list.
|
| AddReplicate |
Appends value count times to the end of this list.
|
| AsArray |
Returns a native array that aliases the content of this list.
|
| AsDeferredJobArray |
Returns an array that aliases this list. The length of the array is updated when the length of
this array is updated in a prior job.
|
| AsParallelReader |
Returns a parallel reader of this list.
|
| AsParallelWriter |
Returns a parallel writer of this list.
|
| AsReadOnly |
Returns a read only of this list.
|
| AsReadOnlySpan |
Returns ReadOnlySpan<T> view of this container.
|
| AsSpan |
Returns Span<T> view of this container.
|
| Clear |
Sets the length to 0.
|
| CopyFrom |
Copies all elements of specified container to this container.
|
| Dispose |
Releases all resources (memory and safety handles).
|
| ElementAt |
Returns a reference to the element at an index.
|
| GetEnumerator |
Returns an enumerator over the elements of this list.
|
| GetUnsafeList |
Returns the internal unsafe list.
|
| GetUnsafePtr |
Get a pointer to the data.
|
| GetUnsafeReadOnlyPtr |
Get a pointer to the data.
|
| InsertRange |
Shifts elements toward the end of this list, increasing its length.
|
| InsertRangeWithBeginEnd |
Shifts elements toward the end of this list, increasing its length.
|
| RemoveAt |
Removes the element at an index, shifting everything above it down by one. Decrements the length by 1.
|
| RemoveAtSwapBack |
Copies the last element of this list to the specified index. Decrements the length by 1.
|
| RemoveRange |
Removes "N" elements in a range, shifting everything above the range down by "N". Decrements the length by "N".
|
| RemoveRangeSwapBack |
Copies the last "N" elements of this list to a range in this list. Decrements the length by "N".
|
| Resize |
Sets the length of this list, increasing the capacity if necessary.
|
| ResizeUninitialized |
Sets the length of this list, increasing the capacity if necessary.
|
| SetCapacity |
Sets the capacity.
|
| ToArray |
Returns an array containing a copy of this list's content.
|
| TrimExcess |
Sets the capacity to match the length.
|