Struct UnsafeList<T>.ParallelWriter
A parallel writer for an UnsafeList<T>.
Namespace: Unity.Collections.LowLevel.Unsafe
Assembly: solution.dll
Syntax
public struct UnsafeList<T>.ParallelWriter
Remarks
Use AsParallelWriter() to create a parallel writer for a list.
Fields
| Name | Description |
|---|---|
| ListData | The UnsafeList to write to. |
Properties
| Name | Description |
|---|---|
| Ptr | The data of the list. |
Methods
| Name | Description |
|---|---|
| AddNoResize(T) | Adds an element to the end of the list. |
| AddRangeNoResize(void*, int) | Copies elements from a buffer to the end of the list. |
| AddRangeNoResize(UnsafeList<T>) | Copies the elements of another list to the end of this list. |