package crdt-ml

  1. Overview
  2. Docs

A collection of mutable and immutable CRDTs.

This module is meant to be opened to use both mutable and immutable structures in the same codebase. To use, for example, and ORSet, you can choose to use either Mutable.ORSet or Immutable.ORSet.

module Mutable : sig ... end

A collection of mutable CRDTs

module Immutable : sig ... end

A collection of immutable CRDTs