4 writes to _current
Microsoft.Build.Framework (4)
SegmentedArray.cs (4)
465
_current
= (Memory<T>.Empty, Memory<T>.Empty);
474
_current
= (Memory<T>.Empty, Memory<T>.Empty);
489
_current
= (firstSegment.AsMemory().Slice(offset, currentSegmentLength), secondSegment.AsMemory().Slice(offset, currentSegmentLength));
498
_current
= (firstSegment.AsMemory().Slice(0, currentSegmentLength), secondSegment.AsMemory().Slice(0, currentSegmentLength));
1 reference to _current
Microsoft.Build.Framework (1)
SegmentedArray.cs (1)
468
public (Memory<T> first, Memory<T> second) Current =>
_current
;