4 writes to _source
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.cs (4)
5892_source = source; 5905_source = source; 5924_source = source; 5934_source = source;
9 references to _source
System.Private.CoreLib (9)
src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.cs (9)
5870/// <summary>The inclusive starting index in <see cref="_source"/> of the current range.</summary> 5872/// <summary>The exclusive ending index in <see cref="_source"/> of the current range.</summary> 5874/// <summary>The index in <see cref="_source"/> from which the next separator search should start.</summary> 5883public readonly ReadOnlySpan<T> Source => _source; 5953separatorIndex = _source.Slice(_startNext).IndexOf(_separator); 5958separatorIndex = _source.Slice(_startNext).IndexOfAny(_separatorBuffer); 5963separatorIndex = _source.Slice(_startNext).IndexOf(_separatorBuffer); 5974separatorIndex = _source.Slice(_startNext).IndexOfAny(_searchValues); 5987_startNext = _endCurrent = _source.Length;