Check if the tracker is empty.
(&self)
| 398 | |
| 399 | /// Check if the tracker is empty. |
| 400 | pub fn is_empty(&self) -> bool { |
| 401 | !self.has_conflicts() |
| 402 | } |
| 403 | |
| 404 | /// Get all changes involved in conflicts. |
| 405 | pub fn involved_changes(&self) -> impl Iterator<Item = &NodeId> { |
no test coverage detected