An acquired run of chunks. chunks are chunk indices into the pool's region (index × chunkBytes = byte offset in the C++ twin); byteSize is the caller's requested size, ≤ chunks.length × chunkBytes.

interface ChunkSpan {
    byteSize: number;
    chunks: number[];
}

Properties

Properties

byteSize: number
chunks: number[]