package irmin

  1. Overview
  2. Docs
On This Page
  1. Refs
Legend:
Library
Module
Module type
Parameter
Class
Class type

User-defined references. A reference store associates a name (branch ID) with its head commit in an Irmin store.

Refs

module type S = sig ... end

An implementation specifies base functions on abstract IDs and defines a default value for denoting the master branch name.

module String : S with type t = string

String is an implementation of S where branch IDs are strings. The master branch ID is "master". Valid strings contain only alpha-numeric characters, -, _, ., and /.

module type STORE = sig ... end

STORE specifies the signature of reference stores.

OCaml

Innovation. Community. Security.