delete method

void delete(
  1. K key
)

Marks the record as deleted. Note: this doesn't actually delete the record since the deletion needs to be propagated when merging with other CRDTs.

Implementation

void delete(K key) => put(key, null);