DoxigAlpha

Function parameters

Parameters

#
c:*Compress

Type definitions in this namespace

Types

#
Level
Trades between speed and compression size.

Functions in this namespace

Functions

#

Number of tokens to accumulate in deflate before starting block encoding.

Values

#
n_tokens
Number of tokens to accumulate in deflate before starting block encoding.

Source

Implementation

#
pub fn end(c: *Compress) !void {
    try endUnflushed(c);
    const out = c.block_writer.output;
    try out.flush();
}