package irmin-pack

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
val run : root:string -> unit Lwt.t
val term_internal : (unit -> unit) Cmdliner.Term.t
type size =
  1. | Bytes of int
val size_t : size Irmin.Type.t
type version = [
  1. | `V1
  2. | `V2
]
val version_t : version Irmin.Type.t
type io = {
  1. size : size;
  2. offset : int64;
  3. generation : int64;
  4. version : version;
}
val io_t : io Irmin.Type.t
type files = {
  1. pack : io option;
  2. branch : io option;
  3. dict : io option;
}
val files_t : files Irmin.Type.t
val v : root:string -> version:[ `V1 | `V2 ] -> files
val detect_version : root:string -> [ `V1 | `V2 ]