Suggest a change
Success!
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
Close
Submission failed
For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
Close
Declaration
public void
Add(
TKey key,
TValue item);
Parameters
| Parameter |
Description |
| key |
The key to add. |
| item |
The value to add. |
Description
Adds a new key-value pair.
If the key is already present, this method throws without modifying the hash map.
Declaration
public void
Add(
TKey key,
TValue item,
int
threadIndexOverride);
Parameters
| Parameter |
Description |
| key |
The key to add. |
| item |
The value to add. |
| threadIndexOverride |
The thread index which must be set by a field from a job struct with the NativeSetThreadIndexAttribute attribute. |
Description
Adds a new key-value pair.
If the key is already present, this method throws without modifying the hash map.