| Method |
Description |
| Add |
Appends an element to the end of this list. Increments the length by 1.
|
| AddNoResize |
Appends an element to the end of this list. Increments the length by 1.
|
| AddRange |
Appends elements from a buffer to the end of this list. Increments the length by the number of appended elements.
|
| AddRangeNoResize |
Appends elements from a buffer to the end of this list. Increments the length by the number of appended elements.
|
| AddReplicate |
Appends value count times to the end 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.
|
| CompareTo |
Returns a number denoting whether this list should be placed before or after another list in a sort.
|
| ElementAt |
Returns the element at a given index.
|
| Equals |
Returns true if this list and another list are equal.
|
| GetEnumerator |
Returns an enumerator for iterating over the elements of this list.
|
| GetHashCode |
Returns the hash code of this list.
|
| GetUnsafePtr |
Get a pointer to the data.
|
| GetUnsafeReadOnlyPtr |
Get a pointer to the data.
|
| Insert |
Inserts a single element at an index. Increments the length by 1.
|
| 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. Shifts everything above the index down by one and decrements the length by 1.
|
| RemoveAtSwapBack |
Copies the last element of this list to an index. Decrements the length by 1.
|
| RemoveRange |
Removes "N" elements of a range. Shifts everything above the range down by "N" and 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".
|
| ToArray |
Returns a managed array that is a copy of this list.
|
| ToNativeArray |
Returns an array that is a copy of this list.
|