Struct NativeParallelHashSet<T>.Enumerator
An enumerator over the values of a set.
Namespace: Unity.Collections
Assembly: Unity.Collections.dll
Syntax
[NativeContainer]
[NativeContainerIsReadOnly]
public struct NativeParallelHashSet<T>.Enumerator
Remarks
In an enumerator's initial state, Current is invalid. The first MoveNext() call advances the enumerator to the first value.
Properties
Current
The current value.
Declaration
public T Current { get; }
Property Value
Type | Description |
---|---|
T | The current value. |
Methods
Dispose()
Does nothing.
Declaration
public void Dispose()
MoveNext()
Advances the enumerator to the next value.
Declaration
public bool MoveNext()
Returns
Type | Description |
---|---|
bool | True if |
Reset()
Resets the enumerator to its initial state.
Declaration
public void Reset()