import { BytesList } from "https://deno.land/std@0.200.0/bytes/mod.ts";
An abstraction of multiple Uint8Arrays
Methods
add()
value: Uint8Array,
start?,
end?,
Push bytes with given offset infos
concat(): Uint8Array
Concatenate chunks into single Uint8Array copied.
get(i: number): number
Get indexed byte from chunks
getChunkIndex(pos: number): number
Find chunk index in which pos
locates by binary-search
returns -1 if out of range
iterator(start?): IterableIterator<number>
Iterator of bytes from given position
shift(n: number)
Drop head n
bytes.
size()
Total size of bytes
slice(start: number, end?: number): Uint8Array
Returns subset of bytes copied