(&mut self, conflict: CrdtConflict)
| 533 | /// Adds a conflict to the tracker. |
| 534 | #[inline] |
| 535 | pub fn add(&mut self, conflict: CrdtConflict) { |
| 536 | self.conflicts.push(conflict); |
| 537 | } |
| 538 | |
| 539 | /// Adds a conflict with a specific kind and description. |
| 540 | #[inline] |