package irmin

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Store paths.

An Irmin store binds paths to user-defined contents. Paths are composed by basic elements, that we call steps. The following Path module provides functions to manipulate steps and paths.

Tree path handling.

module type S = sig ... end

Signature for path implementations.

module String_list : S with type step = string and type t = string list

An implementation of paths as string lists.