2 references to CircularBuffer
aspire (2)
src\Shared\CircularBuffer.cs (2)
25
public CircularBuffer(int capacity) :
this
(new List<T>(), capacity, start: 0, end: 0)
291
var buffer = new
CircularBuffer
<T>(_buffer.ToList(), Capacity, _start, _end);