Allocate a new leaf ID.
(&mut self)
| 259 | |
| 260 | /// Allocate a new leaf ID. |
| 261 | fn alloc_leaf(&mut self) -> LeafId { |
| 262 | let id = LeafId::new(self.change_id, self.next_leaf); |
| 263 | self.next_leaf += 1; |
| 264 | id |
| 265 | } |
| 266 | } |
| 267 | |
| 268 | // Semantic to CRDT Converter |
no outgoing calls
no test coverage detected