package decompress

  1. Overview
  2. Docs

Deflate module.

module type S = sig ... end
module type INPUT = sig ... end
module type OUTPUT = sig ... end
module Make (I : INPUT) (O : OUTPUT with type i = I.t) : S with type src = I.t and type dst = O.t