BitReader
export interface BitReader {
eof(): boolean
moveToByteBoundary(force: boolean): void
readBits(n: number): number
readByte(): number
}
Properties
eof
bitReader.eof satisfies () => boolean
moveToByteBoundary
bitReader.moveToByteBoundary satisfies (force: boolean) => void
readBits
bitReader.readBits satisfies (n: number) => number
readByte
bitReader.readByte satisfies () => number