NativeParallelMultiHashMap<TKey, TValue>.Enumerator
An enumerator over the values of an individual key in a multi hash map.
Read time 1 minuteLast updated 12 days ago
Definition
- Type: Struct
- Namespace: Unity.Collections
- Assembly: UnityEngine.ManagedKernelModule
- Implements: IEnumerator<T>, IEnumerator, IDisposable
public struct NativeParallelMultiHashMap<TKey, TValue>.Enumerator : IEnumerator<TValue>, IEnumerator, IDisposable
Remarks
In an enumerator's initial state, NativeParallelMultiHashMap<TKey, TValue>.Enumerator.Current is not valid to read. The first NativeParallelMultiHashMap<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. |