(meta/*: Uint32Array[3]*/, buffer /*: Uint8Array */)
| 1 | class RingBuffer { |
| 2 | constructor(meta/*: Uint32Array[3]*/, buffer /*: Uint8Array */) { |
| 3 | this.meta = meta; |
| 4 | this.buffer = buffer; |
| 5 | } |
| 6 | |
| 7 | get head() { |
| 8 | return this.meta[0]; |
nothing calls this directly
no outgoing calls
no test coverage detected