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 bool
TryAdd(
T item);
Parameters
| Parameter |
Description |
| item |
The value to add. |
Returns
bool
True if the value is not already present.
Description
Adds a new value.
If the item is already present, this method returns false without replacing said item.
Declaration
public bool
TryAdd(
T item,
int
threadIndexOverride);
Parameters
| Parameter |
Description |
| 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 value is not already present.
Description
Adds a new value.
If the item is already present, this method returns false without replacing said item.