3 writes to _current
Microsoft.CodeAnalysis.Collections.Package (3)
SegmentedArray.cs (3)
624
_current
= (Memory<T>.Empty, Memory<T>.Empty);
633
_current
= (Memory<T>.Empty, Memory<T>.Empty);
647
_current
= (firstSegment.AsMemory().Slice(firstOffset - currentSegmentLength + 1, currentSegmentLength), secondSegment.AsMemory().Slice(secondOffset - currentSegmentLength + 1, currentSegmentLength));
1 reference to _current
Microsoft.CodeAnalysis.Collections.Package (1)
SegmentedArray.cs (1)
627
public readonly (Memory<T> first, Memory<T> second) Current =>
_current
;