package irmin

  1. Overview
  2. No Docs
Irmin, a distributed database that follows the same design principles as Git

Install

Dune Dependency

Authors

Maintainers

Sources

irmin-3.7.0.tbz
sha256=cc6846d91459abc61e713b9adb55fe0427d9e320669f023a609121af1893b57a
sha512=e3f8519b5b6c2dc27dc2e1cce9daed927ea17ce298807cc9ec854ea700122fa3866be991c7e01e1226919d8a9c7a7b0f679a80078d2aed17b83aeb961845eb81

doc/irmin.mem/Irmin_mem/KV/Make/Schema/Hash/index.html

Module Schema.HashSource

Signature for digest hashes, inspired by Digestif.

Sourcetype t = hash

The type for digest hashes.

Sourceval hash : ((string -> unit) -> unit) -> t

Compute a deterministic store key from a sequence of strings.

Sourceval short_hash : t -> int

short_hash h is a small hash of h, to be used for instance as the `hash` function of an OCaml Hashtbl.

Sourceval hash_size : int

hash_size is the size of hash results, in bytes.

Sourceval to_raw_string : t -> string

to_raw_string t is the raw sequence of bytes in t (of length hash_size).

Sourceval unsafe_of_raw_string : string -> t

unsafe_of_raw_string b is the hash consisting of the raw sequence of bytes b.

Warning: this function cannot guarantee that the supplied byte string is a valid output of the hash process, so should only be used on strings that are known to have been built with to_raw_string.

Sourceval short_hash_substring : Bigstringaf.t -> off:int -> int

short_hash_substring t off computes the short-hash of the raw hash data contained in t at offset off. It has behaviour equivalent to:

  Bigstringaf.substring t ~off ~len:hash_size
  |> unsafe_of_raw_string
  |> short_hash

but may be more efficient due to not needing to allocate an intermediate string.

Value Types

t is the value type for t.

OCaml

Innovation. Community. Security.