Merges another tracker's conflicts into this one.
(&mut self, other: CrdtConflictTracker)
| 632 | |
| 633 | /// Merges another tracker's conflicts into this one. |
| 634 | pub fn merge(&mut self, other: CrdtConflictTracker) { |
| 635 | self.conflicts.extend(other.conflicts); |
| 636 | } |
| 637 | |
| 638 | /// Merges another tracker's conflicts by reference. |
| 639 | pub fn merge_from(&mut self, other: &CrdtConflictTracker) { |