7 writes to _start
Aspire.Dashboard (7)
src\Shared\CircularBuffer.cs (7)
38
_start
= start;
130
_start
= _end;
153
_start
= _end;
170
_start
= _end;
210
_start
= _end;
225
_start
= _end;
232
_start
= 0;
8 references to _start
Aspire.Dashboard (5)
src\Shared\CircularBuffer.cs (5)
141
var internalIndex = index +
_start
;
168
if (
_start
> 0)
280
return (
_start
+ index) % _buffer.Count;
316
var buffer = new CircularBuffer<T>(_buffer.ToList(), Capacity,
_start
, _end);
327
public int Start => _collection.
_start
;
Aspire.Dashboard.Tests (3)
CircularBufferTests.cs (3)
83
Assert.Equal(2, b.
_start
);
201
Assert.Equal(3, b.
_start
);
229
Assert.Equal(4, b.
_start
);