Returns `true` if no files changed during this turn. An empty turn produces no Atomic change — the orchestrator silently skips recording.
(&self)
| 523 | /// An empty turn produces no Atomic change — the orchestrator |
| 524 | /// silently skips recording. |
| 525 | pub fn is_empty(&self) -> bool { |
| 526 | self.modified.is_empty() && self.added.is_empty() && self.deleted.is_empty() |
| 527 | } |
| 528 | |
| 529 | /// Returns the total number of files affected (modified + added + deleted). |
| 530 | pub fn file_count(&self) -> usize { |
no outgoing calls
no test coverage detected