A parallel writer for a NativeParallelHashSet.
Use NativeParallelHashSet<T0>.AsParallelWriter to create a parallel writer for a set.
| Property | Description |
|---|---|
| Capacity | The number of values that fit in the current allocation. |
| Method | Description |
|---|---|
| Add | Adds a new item. If the item is already present in the collection, this method should throw, but currently does not! Instead, it returns false without replacing said item. |
| TryAdd | Adds a new value. If the item is already present, this method returns false without replacing said item. |