Returns the count of unresolved conflicts.
(&self)
| 625 | |
| 626 | /// Returns the count of unresolved conflicts. |
| 627 | pub fn unresolved_count(&self) -> usize { |
| 628 | self.conflicts.iter().filter(|c| !c.is_resolved()).count() |
| 629 | } |
| 630 | |
| 631 | // Merge |
| 632 |
nothing calls this directly
no test coverage detected