| Parameter | Description |
|---|---|
| ptr | The buffer to copy from. |
| count | The number of elements to copy from the buffer. |
Appends elements from a buffer to the end of this list.
Increments the length by count unless doing so would exceed the current capacity.
| Parameter | Description |
|---|---|
| roSpan | ReadOnlySpan to copy from. |
Copies elements from a ReadOnlySpan to the end of this list.
| Parameter | Description |
|---|---|
| list | The other list to copy from. |
Appends the elements of another list to the end of this list.
Increments the length of this list by the length of the other list unless doing so would exceed the current capacity.
| Parameter | Description |
|---|---|
| list | The other list to copy from. |
Appends the elements of another list to the end of this list.
Increments the length of this list by the length of the other list unless doing so would exceed the current capacity.