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)
141var internalIndex = index + _start; 168if (_start > 0) 280return (_start + index) % _buffer.Count; 316var buffer = new CircularBuffer<T>(_buffer.ToList(), Capacity, _start, _end); 327public int Start => _collection._start;
Aspire.Dashboard.Tests (3)
CircularBufferTests.cs (3)
83Assert.Equal(2, b._start); 201Assert.Equal(3, b._start); 229Assert.Equal(4, b._start);