Base32Impl

Implementation for _base32.

Members

Functions

decode
ubyte[] decode(CR source, UB[] buffer)

Decodes source and stores the result in buffer. If no _buffer is assigned, a new buffer will be created.

decode
size_t decode(C[] source, UBR range)

Decodes source and outputs the result to range.

decode
ubyte[] decode(C[] source, UB[] buffer)

Decodes source and stores the result in buffer. If no _buffer is assigned, a new buffer will be created.

decode
size_t decode(CR source, UBR range)

Decodes source and outputs the result to range.

decodeLength
size_t decodeLength(size_t sourceLength)

Calculates the length for decoding.

encode
char[] encode(UB[] source, C[] buffer)

Encodes source and stores the result in buffer. If no _buffer is assigned, a new buffer will be created.

encode
char[] encode(UBR source, C[] buffer)

Encodes source and stores the result in buffer. If no _buffer is assigned, a new buffer will be created.

encode
size_t encode(UB[] source, CR range)

Encodes source and outputs the result to range.

encode
size_t encode(UBR source, CR range)

Encodes source and outputs the result to range.

encodeLength
size_t encodeLength(size_t sourceLength)

Calculates the length for encoding.

Templates

encoder
template encoder(Range)

Creates an InputRange which lazily encodes source.

Meta