Check if no operations were performed. Returns `true` if no files were written, no directories created, and no files skipped. # Example ```rust use atomic_core::output::repo::OutputOutcome; let mut outcome = OutputOutcome::new(); assert!(outcome.is_empty()); outcome.record_file("test.rs", 100); assert!(!outcome.is_empty()); ```
(&self)
| 145 | /// assert!(!outcome.is_empty()); |
| 146 | /// ``` |
| 147 | pub fn is_empty(&self) -> bool { |
| 148 | self.files.is_empty() && self.directories.is_empty() && self.skipped.is_empty() |
| 149 | } |
| 150 | |
| 151 | /// Get the number of files written. |
| 152 | /// |
no outgoing calls
no test coverage detected