12345678910111213141516171819202122232425(** 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]. *)(** A collection of mutable CRDTs *)moduleMutable=structmoduleIntVector=M_IntVectormoduleGCounter=M_GCountermodulePNCounter=M_PNCountermoduleGSet=M_GSetmoduleORSet=M_ORSetmoduleUSet=M_USetend(** A collection of immutable CRDTs *)moduleImmutable=structmoduleIntVector=I_IntVectormoduleGCounter=I_GCountermodulePNCounter=I_PNCountermoduleGSet=I_GSetmoduleORSet=I_ORSetmoduleUSet=I_USetend