7 writes to _start
Aspire.Dashboard (7)
src\Shared\CircularBuffer.cs (7)
38
_start
= start;
127
_start
= _end;
146
_start
= _end;
163
_start
= _end;
200
_start
= _end;
211
_start
= _end;
218
_start
= 0;
8 references to _start
Aspire.Dashboard (5)
src\Shared\CircularBuffer.cs (5)
134
var internalIndex = index +
_start
;
161
if (
_start
> 0)
266
return (
_start
+ index) % _buffer.Count;
291
var buffer = new CircularBuffer<T>(_buffer.ToList(), Capacity,
_start
, _end);
302
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
);