NativeMultiHashMap

NativeMultiHashMap maps a key against multiple values. Its remove method removes a key (and therefore every value associated). Is there a mechanism to just remove a single value associated with a key?

Is there any documentation for this class anywhere? I did a lot of Googling but all my ECS/Unity searches seem to go back to the same few introductory articles which aren’t about NativeMultiHashMap :hushed:)

Cheers!

Peter

There’s a method to remove a value based on a iterator which can be used to remove a single value:

2 Likes

Brilliant, thank you