diff options
Diffstat (limited to 'src/table/crdt/map.rs')
-rw-r--r-- | src/table/crdt/map.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/table/crdt/map.rs b/src/table/crdt/map.rs index 1193e6db..c4a30a26 100644 --- a/src/table/crdt/map.rs +++ b/src/table/crdt/map.rs @@ -37,6 +37,7 @@ where Self { vals: vec![(k, v)] } } + /// Add a value to the map pub fn put(&mut self, k: K, v: V) { self.merge(&Self::put_mutator(k, v)); } |