encodedLines overloads
Declared in <bdlde_base64encoder.h>
Return the MIME-style encoded line count for inputLength.
static
int
encodedLines(int inputLength);
» more...
Return the encoded line count for inputLength and maxLineLength.
static
int
encodedLines(
int inputLength,
int maxLineLength);
» more...
Return the encoded line count for inputLength under options.
static
std::size_t
encodedLines(
EncoderOptions const& options,
std::size_t inputLength);
» more...
inputLength with MIME line lengthinputLength and maxLineLengthinputLength under options| Name | Description |
|---|---|
| inputLength | number of input bytes to encode |
| maxLineLength | maximum encoded line length before a soft break |
| options | encoder configuration used for the line calculation |