3 writes to _current
Microsoft.CodeAnalysis.CodeStyle (3)
SegmentedArray.cs (3)
570
_current
= (Memory<T>.Empty, Memory<T>.Empty);
579
_current
= (Memory<T>.Empty, Memory<T>.Empty);
593
_current
= (firstSegment.AsMemory().Slice(firstOffset, currentSegmentLength), secondSegment.AsMemory().Slice(secondOffset, currentSegmentLength));
1 reference to _current
Microsoft.CodeAnalysis.CodeStyle (1)
SegmentedArray.cs (1)
573
public readonly (Memory<T> first, Memory<T> second) Current =>
_current
;