package irmin-pack

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Value : sig ... end
module Pack_value : sig ... end
module CA : sig ... end
type 'a t = 'a Node.t * 'a CA.t
type key = CA.key
type value = CA.value
val mem : [> Irmin.Perms.read ] t -> key -> bool Lwt.t
val find : [> Irmin.Perms.read ] t -> key -> value option Lwt.t
val close : 'a t -> unit Lwt.t
type hash = CA.hash
val add : [> Irmin.Perms.write ] t -> value -> key Lwt.t
val unsafe_add : [> Irmin.Perms.write ] t -> hash -> value -> key Lwt.t
val index : [> Irmin.Perms.read ] t -> hash -> key option Lwt.t
val batch : Irmin.Perms.read t -> ([ `Read | `Write ] t -> 'a Lwt.t) -> 'a Lwt.t
module Key : sig ... end
module Info : sig ... end
module Val : sig ... end
module Hash : sig ... end
module Node : sig ... end
val merge : [> Irmin.Perms.read_write ] t -> info:Info.f -> key option Irmin.Merge.t