A read-only alias for the value of a NativeParallelHashMap. Does not have its own allocated storage.
| Property | Description |
|---|---|
| Capacity | The number of key-value pairs that fit in the current allocation. |
| IsCreated | Whether this hash map has been allocated (and not yet deallocated). |
| IsEmpty | Whether this hash map is empty. |
| Method | Description |
|---|---|
| ContainsKey | Returns true if a given key is present in this hash map. |
| Count | The current number of key-value pairs in this hash map. |
| GetEnumerator | Returns an enumerator over the key-value pairs of this hash map. |
| GetKeyArray | Returns an array with a copy of all this hash map's keys (in no particular order). |
| GetKeyValueArrays | Returns a NativeKeyValueArrays with a copy of all this hash map's keys and values. |
| GetValueArray | Returns an array with a copy of all this hash map's values (in no particular order). |
| TryGetFirstValue | Gets an iterator for a key. |
| TryGetNextValue | Advances an iterator to the next value associated with its key. |