package irmin

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type ('hash, 'step, 'value) t =
  1. | Blinded of 'hash
  2. | Values of ('step * 'value) list
  3. | Inode of {
    1. length : int;
    2. proofs : (int * ('hash, 'step, 'value) t) list;
    }
val t : 'hash Type.t -> 'step Type.t -> 'value Type.t -> ('hash, 'step, 'value) t Type.t