encodeOutSize

fun encodeOutSize(unEncodedSize: Long): Long(source)

Pre-calculates and returns the size of the output, after encoding would occur, based off of the Config options set.

Will always return a value greater than or equal to 0.

Parameters

unEncodedSize

The size of the data which is to be encoded.

Throws

If unEncodedSize is negative, or the calculated size exceeded Long.MAX_VALUE.


fun encodeOutSize(unEncodedSize: Long, lineBreakInterval: Byte): Long(source)

Pre-calculates and returns the size of the output, after encoding would occur, based off of the Config options set and expressed lineBreakInterval.

Will always return a value greater than or equal to 0.

Parameters

unEncodedSize

The size of the data which is to be encoded.

lineBreakInterval

The interval at which linebreaks are to be inserted.

Throws

If unEncodedSize is negative, or the calculated size exceeded Long.MAX_VALUE.