Method FillArrayWithValue
FillArrayWithValue<T>(NativeArray<T>, T)
Fills array with repeated copies of value.
Declaration
public static void FillArrayWithValue<T>(NativeArray<T> array, T value) where T : struct
Parameters
| Type | Name | Description |
|---|---|---|
| NativeArray<T> | array | The array to fill. |
| T | value | The value with which to fill the array. |
Type Parameters
| Name | Description |
|---|---|
| T | The type of the |