MCPcopy Create free account
hub / github.com/denoland/std /

Class

streams/buffer.ts:68–68  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

66 * ```
67 */
68export class Buffer {
69 #buf: Uint8Array; // contents are the bytes buf[off : len(buf)]
70 #off = 0; // read at buf[off], write at buf[buf.byteLength]
71 #readable: ReadableStream<Uint8Array> = new ReadableStream({

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected