Get the total number of conflicts.
(&self)
| 393 | |
| 394 | /// Get the total number of conflicts. |
| 395 | pub fn total_conflict_count(&self) -> usize { |
| 396 | self.zombie_count() + self.missing_context_count() + self.order_conflict_count() |
| 397 | } |
| 398 | |
| 399 | /// Check if the tracker is empty. |
| 400 | pub fn is_empty(&self) -> bool { |
no test coverage detected