Table of Contents

Struct SwiftDictionary<TKey, TValue>.ValueCollection.ValueCollectionEnumerator

Namespace
SwiftCollections
Assembly
SwiftCollections.dll

Enumerates the values in a SwiftDictionary collection.

public struct SwiftDictionary<TKey, TValue>.ValueCollection.ValueCollectionEnumerator : IEnumerator<TValue>, IEnumerator, IDisposable
Implements
IEnumerator<TValue>
Inherited Members

Remarks

The enumerator is invalidated if the collection is modified after the enumerator is created. Enumerators are typically used in a foreach statement to iterate through the collection values.

Properties

Current

public TValue Current { get; }

Property Value

TValue

Methods

Dispose()

public void Dispose()

MoveNext()

public bool MoveNext()

Returns

bool

Reset()

public void Reset()