Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


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

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

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.