class in Unity.Collections.LowLevel.Unsafe
/
Implemented in:UnityEngine.CoreModule
Indicates that the native container only allows writing, and can only be written to in safe, parallel contexts.
Use this attribute when defining a concurrent, write-only interface to the data in the native container.
Providing a write-only interface to the data in a native container allows your container to be passed to parallel job types, such as IJobParallelFor, as writable
without restrictions on which indices can be written to, and indicates that none of the portions overlap.
Native container types marked with this attribute must enforce write-only access.
For an alternative method of supporting parallel writing, refer to NativeContainerSupportsMinMaxWriteRestrictionAttribute. For information on creating your own native
container, refer to the User Manual documentation on Implement a custom native container.