Table of Contents

Struct Span<T>.Enumerator

Namespace
System
Assembly
C2JBridge.dll

Enumerator for Span<T>, returned by GetEnumerator().

public ref struct Span<T>.Enumerator
Inherited Members

Properties

Current

Gets a reference to the element at the current position of the enumerator.

public ref T Current { get; }

Property Value

T

Methods

MoveNext()

Advances the enumerator to the next element.

public bool MoveNext()

Returns

bool

true if the enumerator successfully advanced to the next element; false if the enumerator has passed the end of the span.