Merges another tracker's conflicts by reference.
(&mut self, other: &CrdtConflictTracker)
| 637 | |
| 638 | /// Merges another tracker's conflicts by reference. |
| 639 | pub fn merge_from(&mut self, other: &CrdtConflictTracker) { |
| 640 | self.conflicts.extend(other.conflicts.iter().cloned()); |
| 641 | } |
| 642 | } |
| 643 | |
| 644 | impl IntoIterator for CrdtConflictTracker { |