val config : ?config:Irmin.config -> string -> Irmin.configconfig ?config root is the configuration config augmented with the key Irmin.Config.root set to root. If not specified, config is Irmin.Config.empty.
module type IO = sig ... endmodule Append_only : functor (IO : IO) -> Irmin.APPEND_ONLY_STORE_MAKERmodule Atomic_write : functor (IO : IO) -> Irmin.ATOMIC_WRITE_STORE_MAKERmodule Make : functor (IO : IO) -> Irmin.S_MAKERmodule KV : functor (IO : IO) -> Irmin.KV_MAKERAdvanced configuration
module type Config = sig ... endmodule Append_only_ext : functor (IO : IO) -> functor (C : Config) -> Irmin.APPEND_ONLY_STORE_MAKERmodule Atomic_write_ext : functor (IO : IO) -> functor (C : Config) -> Irmin.ATOMIC_WRITE_STORE_MAKERmodule Make_ext : functor (IO : IO) -> functor (Obj : Config) -> functor (Ref : Config) -> Irmin.S_MAKERIn-memory IO mocks
module IO_mem : sig ... end