| 43 | * ``` |
| 44 | */ |
| 45 | export class Buffer implements Writer, WriterSync, Reader, ReaderSync { |
| 46 | #buf: Uint8Array; // contents are the bytes buf[off : len(buf)] |
| 47 | #off = 0; // read at buf[off], write at buf[buf.byteLength] |
| 48 |
nothing calls this directly
no outgoing calls
no test coverage detected