Readonly alphabetReturns a 16 character string, where the character at index i is the
encoding of the base-16 digit i.
Static lowercaseStatic uppercaseReturns a Writer that, when fed an input Uint8Array, returns a
continuation that writes the base-16 (hexadecimal) encoding of the input
byte array.
Returns a Writer continuation that writes the base-16 (hexadecimal)
encoding of the input Uint8Array.
Writes the base-16 (hexadecimal) encoding of the input Uint8Array to
the output, returning a Writer continuation that knows how to write any
remaining output that couldn't be immediately generated.
Static decodeStatic isStatic parseStatic parseParses the base-16 (hexadecimal) encoded input, and writes the decoded
bytes to a growable array, returning a Parser continuation that knows
how to parse any additional input. The returned Parser [[Parser.bind
binds]] a Uint8Array array containing all parsed base-16 data.
Static parserStatic writeGenerated using TypeDoc
Base-16 (hexadecimal) encoding [[Parser]]/[[Writer]] factory.