| 18 | // ─── CircularBuffer ───────────────────────────────────────── |
| 19 | |
| 20 | export class CircularBuffer<T> { |
| 21 | private buffer: (T | undefined)[]; |
| 22 | private head: number = 0; |
| 23 | private _size: number = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected