package crdt-ml

  1. Overview
  2. Docs

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

Parameters

Signature

include Immutable_types.GSet with type elt = O.t
include Immutable_types.Mergeable
type t

Type of mergeable elements.

val make : unit -> t

Create a new mergeable element.

val merge : t -> t -> t

merge a b will merge the state of a and the one from b to create a new mergeable element.

type elt = O.t

Type of the contents of GSet

val add : elt -> t -> t

add el t adds el to t.

val value : t -> elt list

value t gets the raw state of t.

val lookup : elt -> t -> bool

lookup el t returns true if el is in t.

val remove : elt -> t -> t

remove el t removes el from t only if el is in t. Returns t otherwise.