package crdt-ml

  1. Overview
  2. Docs
CRDTs - Conflict-Free Replicated Data Types for OCaml

Install

Dune Dependency

Authors

Maintainers

Sources

v0.10.0.tar.gz
sha256=c9be2ec006cd4f65e6a9bddbcedf024f876134afc1ddf4fb689dd0167de25b73
md5=b8337dcb24a3220a3c35bd5bae5c8f12

doc/crdt_mutable/M_USet/index.html

Module M_USet

Add-once and remove-once set.

Note: Removed elements can never be added again. This is because of how USet handles the value operation (see below).

Supports add, remove, lookup and merge operations. See Mutable_types.RSet. Contains two separate instances of a regular Map, one for adding (add_s) and the other for removing (remove_s).

add el t adds el to add_s.

remove el t adds el to remove_s

Both lookup and value operate on the set difference add_s \ remove_s.

merge a b calls merges add_s_a with add_s_b and the same for b

Creates an add / remove set of elements satisfying Mutable_types.Comparable

OCaml

Innovation. Community. Security.