BitWriter
export interface BitWriter {
finalize(force?: boolean): number[]
length: number
padToByteBoundary(force?: boolean): void
pop(n: number): string
writeBits(bitChars: string): BitWriter
writeByte(byte: number): BitWriter
}
Properties
finalize
finalize(force?: boolean): number[]
length
length: number
padToByteBoundary
padToByteBoundary(force?: boolean): void
pop
pop(n: number): string
writeBits
writeBits(bitChars: string): BitWriter
writeByte
writeByte(byte: number): BitWriter