Method RunAppendByRef
RunAppendByRef<T>(ref T, NativeList<int>, int)
Executes the appending filter job, on the main thread. See IJobFilterExtensions.ScheduleAppend for more information on how appending is performed.
Declaration
public static void RunAppendByRef<T>(this ref T jobData, NativeList<int> indices, int arrayLength) where T : struct, IJobFilter
Parameters
| Type | Name | Description |
|---|---|---|
| T | jobData | The job and data to schedule. |
| NativeList<int> | indices | List of indices to be filtered. Filtered results will be appended to this list. |
| int | arrayLength | Number of indices to filter starting from index 0. |
Type Parameters
| Name | Description |
|---|---|
| T | Job type |