package decompress

  1. Overview
  2. Docs
Implementation of Zlib in OCaml

Install

Dune Dependency

Authors

Maintainers

Sources

decompress-v0.8.1.tbz
sha256=903b0926fe2380caf156fcdefa38bc48794f7fcf7d6befd1719aab3f8c0f1188
md5=6c600b0188516d405510cd95d8d82481

doc/decompress/Decompress/index.html

Module Decompress

module B : sig ... end

Decompress, functionnal implementation of Zlib in OCaml.

module Hunk : sig ... end

Hunk definition.

module L : sig ... end

Lz77 algorithm.

module type DEFLATE = sig ... end

Deflate algorithm.

type error_rfc1951_deflate =
  1. | Lz77 of L.error
module RFC1951_deflate : sig ... end
type error_z_deflate =
  1. | RFC1951 of RFC1951_deflate.error
module Window : sig ... end

Window used by the Inflate algorithm.

module type INFLATE = sig ... end

Inflate algorithm.

type error_rfc1951_inflate =
  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_inflate : sig ... end
type error_z_inflate =
  1. | RFC1951 of RFC1951_inflate.error
  2. | Invalid_header
  3. | Invalid_checksum of {
    1. have : Checkseum.Adler32.t;
    2. expect : Checkseum.Adler32.t;
    }
module Zlib_inflate : sig ... end
OCaml

Innovation. Community. Security.