Is there any way to remove records from a NativeMultiHashMap while processing it in a job?
As far as I have seen you can only read using [ReadOnly] and write using a ParallelWriter, or am I missing something?
I am trying to do a bulk removal job from NativeMultiHashMap and wanted to avoid doing it it all on the main thread if possible.
Thanks!
You can’t do it in a parallel job, however it works fine in a non parallel job (IJob).