Returns true if any operations have been recorded.
(&self)
| 353 | |
| 354 | /// Returns true if any operations have been recorded. |
| 355 | pub fn has_operations(&self) -> bool { |
| 356 | !self.file_ops.is_empty() || self.stats.has_changes() |
| 357 | } |
| 358 | |
| 359 | /// Returns the last allocated branch ID. |
| 360 | pub fn last_branch(&self) -> Option<BranchId> { |
nothing calls this directly
no test coverage detected