package git-kv

  1. Overview
  2. Docs
A Mirage_kv implementation using git

Install

dune-project
 Dependency

Authors

Maintainers

Sources

git-kv-0.2.2.tbz
sha256=6d1e7fe304db9672a86497b57f71af31d97a725ccca77c6f40a461ca3d1929fe
sha512=a9c4d4a4605ad9c97e317be5ee6e07ab610ec4c2a2a56fab7ef000ab61f44b135d538c771fabe7434d19302bb2f433df80279fa87c97bfb1961a2d6e1759240e

doc/git-kv.bbuffer/Bbuffer/index.html

Module BbufferSource

Sourcetype inner_buffer = {
  1. buffer : Bstr.t;
  2. length : int;
}
Sourcetype t = {
  1. mutable inner : inner_buffer;
  2. mutable position : int;
  3. initial_buffer : Bstr.t;
}
Sourceval create : int -> t
Sourceval resize : t -> int -> unit
Sourceval add_substring : t -> string -> int -> int -> unit
Sourceval add_string : t -> string -> unit
Sourceval sub : t -> int -> int -> Bstr.t
Sourceval length : t -> int
Sourceval blit : t -> int -> Bstr.t -> int -> int -> unit