4 writes to _source
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.cs (4)
5913_source = source; 5926_source = source; 5945_source = source; 5955_source = source;
9 references to _source
System.Private.CoreLib (9)
src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.cs (9)
5891/// <summary>The inclusive starting index in <see cref="_source"/> of the current range.</summary> 5893/// <summary>The exclusive ending index in <see cref="_source"/> of the current range.</summary> 5895/// <summary>The index in <see cref="_source"/> from which the next separator search should start.</summary> 5904public readonly ReadOnlySpan<T> Source => _source; 5974separatorIndex = _source.Slice(_startNext).IndexOf(_separator); 5979separatorIndex = _source.Slice(_startNext).IndexOfAny(_separatorBuffer); 5984separatorIndex = _source.Slice(_startNext).IndexOf(_separatorBuffer); 5995separatorIndex = _source.Slice(_startNext).IndexOfAny(_searchValues); 6008_startNext = _endCurrent = _source.Length;