package decompress

  1. Overview
  2. Docs
module type INPUT = sig ... end
module type OUTPUT = sig ... end
module type S = sig ... end
module Make (I : INPUT) (O : OUTPUT) : S with type dst = O.t and type src = I.t
OCaml

Innovation. Community. Security.