ReadOnlySpan<T>.Enumerator.MoveNext Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Advances the enumerator to the next item of the ReadOnlySpan<T>.
public:
bool MoveNext();
public bool MoveNext ();
member this.MoveNext : unit -> bool
Public Function MoveNext () As Boolean
Returns
true
if the enumerator successfully advanced to the next item; false
if the end of the span has been passed.
Remarks
After an enumerator is created, it is positioned before the first element in the span, and the first call to MoveNext
advances the enumerator to the first item in the span.
If MoveNext
passes the end of the span, MoveNext
returns false
. When the enumerator is at this state, subsequent calls to MoveNext
also return false
.