UnsafeParallelMultiHashMap<TKey, TValue>.Enumerator
An enumerator over the values of an individual key in a multi hash map.
Read time 1 minuteLast updated 13 days ago
Definition
- Type: Struct
- Namespace: Unity.Collections.LowLevel.Unsafe
- Assembly: UnityEngine.ManagedKernelModule
- Implements: IEnumerator<T>, IEnumerator, IDisposable
public struct UnsafeParallelMultiHashMap<TKey, TValue>.Enumerator : IEnumerator<TValue>, IEnumerator, IDisposable
Remarks
In an enumerator's initial state, UnsafeParallelMultiHashMap<TKey, TValue>.Enumerator.Current is not valid to read. The first UnsafeParallelMultiHashMap<TKey, TValue>.Enumerator.MoveNext call advances the enumerator to the first value of the key.
Properties
Property | Description |
|---|---|
| Current | The current value. |
Methods
Method | Description |
|---|---|
| Dispose | Does nothing. |
| GetEnumerator | Returns this enumerator. |
| MoveNext | Advances the enumerator to the next value of the key. |
| Reset | Resets the enumerator to its initial state. |