Version: Unity 6.7 Beta (6000.7)
LanguageEnglish
  • C#

UnsafeParallelMultiHashMap<T0,T1>.Add

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

Cancel

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 a key-value pair with this key is already present, an additional separate key-value pair is added.


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 a key-value pair with this key is already present, an additional separate key-value pair is added.