package git

  1. Overview
  2. Docs

Zlib Compression.

module type S = sig ... end
module None : S

No compression.

module M : S

Default Zlib compression in pure OCaml, provided by Decompress.

module type ZLIB = sig ... end

Minimaal signature provided by Zlib.

module Make (Z : ZLIB) : S