Irmin_containers.Lww_registerThe implementation of last-write-wins register. The value to be stored in the register and the timestamp method are provided by the user.
Merge semantics: The value with the largest timestamp is chosen. If two values have the same timestamp, then the larger value is selected based on the compare specified by the user.
module type S = sig ... endSignature of Lww_register
Make returns a mergeable last-write-wins register using the backend and other parameters as specified by the user.
LWW register instantiated using the FS backend provided by Irmin_fs_unix and the timestamp method Time.Unix
LWW register instantiated using the in-memory backend provided by Irmin_mem and the timestamp method Time.Unix