4 writes to _source
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.cs (4)
5861_source = source; 5874_source = source; 5893_source = source; 5903_source = source;
9 references to _source
System.Private.CoreLib (9)
src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.cs (9)
5839/// <summary>The inclusive starting index in <see cref="_source"/> of the current range.</summary> 5841/// <summary>The exclusive ending index in <see cref="_source"/> of the current range.</summary> 5843/// <summary>The index in <see cref="_source"/> from which the next separator search should start.</summary> 5852public readonly ReadOnlySpan<T> Source => _source; 5922separatorIndex = _source.Slice(_startNext).IndexOf(_separator); 5927separatorIndex = _source.Slice(_startNext).IndexOfAny(_separatorBuffer); 5932separatorIndex = _source.Slice(_startNext).IndexOf(_separatorBuffer); 5943separatorIndex = _source.Slice(_startNext).IndexOfAny(_searchValues); 5956_startNext = _endCurrent = _source.Length;