irmin
Irmin.Export_for_backends
Helper module containing useful top-level types for defining Irmin backends. This module is relatively unstable.
irmin.mem
module Store_properties : sig ... end
module Reversed_list : sig ... end
Reversed_list.t is constructed the same way as List.t, but needs to be reversed before it can be used as a regular list.
Reversed_list.t
List.t
type read = Perms.read
type write = Perms.write
type read_write = Perms.read_write
val (>>=) : 'a Lwt.t -> ('a -> 'b Lwt.t) -> 'b Lwt.t
val (>|=) : 'a Lwt.t -> ('a -> 'b) -> 'b Lwt.t
val (let*) : 'a Lwt.t -> ('a -> 'b Lwt.t) -> 'b Lwt.t
val (let+) : 'a Lwt.t -> ('a -> 'b) -> 'b Lwt.t
module Option : sig ... end
module List : sig ... end
module Seq : sig ... end
val shuffle : Random.State.t -> 'a array -> unit