Struct UnsafeParallelHashMapBucketData
A bucket of key-value pairs. Used as the internal storage for hash maps.
Namespace: Unity.Collections.LowLevel.Unsafe
Assembly: solution.dll
Syntax
public struct UnsafeParallelHashMapBucketData
Remarks
Exposed publicly only for advanced use cases.
Fields
Name | Description |
---|---|
bucketCapacityMask | One less than the bucket capacity. |
buckets | The first bucket in the chain. |
keys | The buffer of keys. |
next | The next bucket in the chain. |
values | The buffer of values. |