Check if there are any untracked files.
(&self)
| 521 | |
| 522 | /// Check if there are any untracked files. |
| 523 | pub fn has_untracked(&self) -> bool { |
| 524 | self.entries.iter().any(|e| e.status.is_untracked()) |
| 525 | } |
| 526 | |
| 527 | // Filtered Iterators |
| 528 |
no test coverage detected