MCPcopy Create free account
hub / github.com/garrytan/gstack /

Class

browse/src/buffers.ts:20–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18// ─── CircularBuffer ─────────────────────────────────────────
19
20export class CircularBuffer<T> {
21 private buffer: (T | undefined)[];
22 private head: number = 0;
23 private _size: number = 0;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected