4 writes to _source
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.cs (4)
5862_source = source; 5875_source = source; 5894_source = source; 5904_source = source;
9 references to _source
System.Private.CoreLib (9)
src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.cs (9)
5840/// <summary>The inclusive starting index in <see cref="_source"/> of the current range.</summary> 5842/// <summary>The exclusive ending index in <see cref="_source"/> of the current range.</summary> 5844/// <summary>The index in <see cref="_source"/> from which the next separator search should start.</summary> 5853public readonly ReadOnlySpan<T> Source => _source; 5923separatorIndex = _source.Slice(_startNext).IndexOf(_separator); 5928separatorIndex = _source.Slice(_startNext).IndexOfAny(_separatorBuffer); 5933separatorIndex = _source.Slice(_startNext).IndexOf(_separatorBuffer); 5944separatorIndex = _source.Slice(_startNext).IndexOfAny(_searchValues); 5957_startNext = _endCurrent = _source.Length;