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

NativeParallelHashMap<T0,T1>.TryAdd

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 bool TryAdd(TKey key, TValue item);

Parameters

Parameter Description
key The key to add.
item The value to add.

Returns

bool True if the key-value pair was added.

Description

Adds a new key-value pair.

If the key is already present, this method returns false without modifying this hash map.


Declaration

public bool TryAdd(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.

Returns

bool True if the key-value pair was added.

Description

Adds a new key-value pair.

If the key is already present, this method returns false without modifying this hash map.