Returns `true` if no files changed during this turn. An empty turn produces no Atomic change — the orchestrator silently skips recording.
(&self)
| 515 | /// An empty turn produces no Atomic change — the orchestrator |
| 516 | /// silently skips recording. |
| 517 | pub fn is_empty(&self) -> bool { |
| 518 | self.modified.is_empty() && self.added.is_empty() && self.deleted.is_empty() |
| 519 | } |
| 520 | |
| 521 | /// Returns the total number of files affected (modified + added + deleted). |
| 522 | pub fn file_count(&self) -> usize { |
no outgoing calls
no test coverage detected