Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

compress.zig

Compression algorithms.

File

lib/std/compress.zig

Code

//! Compression algorithms.

/// gzip and zlib are here.
pub const flate = @import("compress/flate.zig");
pub const lzma = @import("compress/lzma.zig");
pub const lzma2 = @import("compress/lzma2.zig");
pub const xz = @import("compress/xz.zig");
pub const zstd = @import("compress/zstd.zig");

test {
    _ = flate;
    _ = lzma;
    _ = lzma2;
    _ = xz;
    _ = zstd;
}