package decompress

  1. Overview
  2. Docs
Pure OCaml implementation of Zlib

Install

Dune Dependency

Authors

Maintainers

Sources

decompress-0.8.tbz
sha256=ea6987f72816044ccf3edb586e3b64668d53c5ef1b0a735119e5c9d740504240
md5=547eaf0803af3ed01ff7801facfe27e6

doc/decompress.rfc1951/Rfc1951/Hunk/index.html

Module Rfc1951.HunkSource

Hunk definition.

Match (len, dist) means a repeating previous pattern of len + 3 bytes at dist + 1 before the current cursor. Literal chr means a character.

Sourcetype t =
  1. | Match of int * int
    (*

    Match (len, dist) where len and dist are biased. The really len is len + 3 and the really dist is dist + 1.

    A Match means a repeating previous pattern of len + 3 byte(s) at dist + 1 before the current cursor.

    *)
  2. | Literal of char
    (*

    Literal chr means a character.

    *)
OCaml

Innovation. Community. Security.