package decompress

  1. Overview
  2. Docs
module Stdlib_buffer = Buffer
module Buffer = Decompress_buffer
module Window = Decompress_window
module Safe = Decompress_safe
module Tables = Decompress_tables
module OS = Decompress_os
module Tree = Decompress_tree
module Option = Decompress_option
val pf : Format.formatter -> ('a, Format.formatter, unit) format -> 'a
val invalid_arg : ('a, unit, string, 'b) format4 -> 'c
module type INFLATE = sig ... end

non-blocking and functionnal implementation of Inflate

module type S = sig ... end
module Convenience (X : S) : sig ... end
type error_rfc1951 =
  1. | Invalid_kind_of_block
  2. | Invalid_complement_of_length
  3. | Invalid_dictionary
  4. | Invalid_distance_code
  5. | Invalid_distance of {
    1. distance : int;
    2. max : int;
    }
module RFC1951 : sig ... end
type error_z =
  1. | RFC1951 of RFC1951.error
  2. | Invalid_header
  3. | Invalid_checksum of {
    1. have : Optint.t;
    2. expect : Optint.t;
    }
module Zlib : sig ... end
type error_g =
  1. | RFC1951 of RFC1951.error
  2. | Invalid_header
  3. | Invalid_header_checksum of {
    1. have : Optint.t;
    2. expect : Optint.t;
    }
  4. | Invalid_checksum of {
    1. have : Optint.t;
    2. expect : Optint.t;
    }
  5. | Invalid_size of {
    1. have : Optint.t;
    2. expect : Optint.t;
    }
module Gzip : sig ... end