Returns `true` if there are any unresolved conflicts.
(&self)
| 615 | |
| 616 | /// Returns `true` if there are any unresolved conflicts. |
| 617 | pub fn has_unresolved(&self) -> bool { |
| 618 | self.conflicts.iter().any(|c| !c.is_resolved()) |
| 619 | } |
| 620 | |
| 621 | /// Returns unresolved conflicts. |
| 622 | pub fn unresolved(&self) -> impl Iterator<Item = &CrdtConflict> { |
nothing calls this directly
no test coverage detected