4 writes to _current
Microsoft.CodeAnalysis.CodeStyle (4)
src\Dependencies\Collections\SegmentedArray.cs (4)
471
_current
= (Memory<T>.Empty, Memory<T>.Empty);
480
_current
= (Memory<T>.Empty, Memory<T>.Empty);
495
_current
= (firstSegment.AsMemory().Slice(offset, currentSegmentLength), secondSegment.AsMemory().Slice(offset, currentSegmentLength));
504
_current
= (firstSegment.AsMemory().Slice(0, currentSegmentLength), secondSegment.AsMemory().Slice(0, currentSegmentLength));
1 reference to _current
Microsoft.CodeAnalysis.CodeStyle (1)
src\Dependencies\Collections\SegmentedArray.cs (1)
474
public readonly (Memory<T> first, Memory<T> second) Current =>
_current
;