(&mut self)
| 570 | /// Returns a mutable iterator over the conflicts. |
| 571 | #[inline] |
| 572 | pub fn iter_mut(&mut self) -> impl Iterator<Item = &mut CrdtConflict> { |
| 573 | self.conflicts.iter_mut() |
| 574 | } |
| 575 | |
| 576 | /// Returns the conflicts as a slice. |
| 577 | #[inline] |
no outgoing calls