Check if there are any untracked files.
(&self)
| 509 | |
| 510 | /// Check if there are any untracked files. |
| 511 | pub fn has_untracked(&self) -> bool { |
| 512 | self.entries.iter().any(|e| e.status.is_untracked()) |
| 513 | } |
| 514 | |
| 515 | // Filtered Iterators |
| 516 |
no test coverage detected