Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


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

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

CurrentThe current value.

Methods

Method

Description

DisposeDoes nothing.
GetEnumeratorReturns this enumerator.
MoveNextAdvances the enumerator to the next value of the key.
ResetResets the enumerator to its initial state.