Version 3.3.0.1

GarbageFreeIterators.HashsetIterator<T> struct

Namespace: Sirenix.Utilities
Assembly: Sirenix.Utilities
public struct HashsetIterator<T> : IDisposable
Hashset iterator.

Type Parameters

T

Constructors

HashsetIterator(HashSet<T>)
Creates a hashset iterator.
public HashsetIterator(HashSet<T> hashset)
Parameters
System.Collections.Generic.HashSet<T> hashset

Properties

Current
Gets the current value.
public T Current { get; }

Methods

Dispose()
Disposes the iterator.
public void Dispose()
GetEnumerator()
Gets the enumerator.
public GarbageFreeIterators.HashsetIterator<T> GetEnumerator()
MoveNext()
Moves to the next value.
public bool MoveNext()
Returns
System.Boolean