Struct CopyToJob<TItem>
Implements
IJobParallelFor
Inherited Members
Namespace: Fwt.Core
Assembly: fwt.core.dll
Syntax
[BurstCompile]
public struct CopyToJob<TItem> : IJobParallelFor where TItem : unmanaged
Type Parameters
| Name | Description |
|---|---|
| TItem |
Fields
Source
Source collection to copy data from
Declaration
[ReadOnly]
public NativeArray<TItem> Source
Field Value
| Type | Description |
|---|---|
| NativeArray<TItem> |
Target
Target collection to copy data to
Declaration
[WriteOnly]
public NativeArray<TItem> Target
Field Value
| Type | Description |
|---|---|
| NativeArray<TItem> |
Methods
Execute(int)
Performs work against a specific iteration index.
Declaration
[BurstCompile]
public void Execute(int index)
Parameters
| Type | Name | Description |
|---|---|---|
| int | index | The index of the Parallel for loop at which to perform work. |
Implements
Unity.Jobs.IJobParallelFor