Mark as having conflicts.
(mut self, count: usize)
| 153 | |
| 154 | /// Mark as having conflicts. |
| 155 | pub fn with_conflicts(mut self, count: usize) -> Self { |
| 156 | self.has_conflicts = count > 0; |
| 157 | self.conflict_count = count; |
| 158 | self |
| 159 | } |
| 160 | |
| 161 | /// Check if content is empty. |
| 162 | pub fn is_empty(&self) -> bool { |
no outgoing calls