Iterate over untracked files.
(&self)
| 540 | |
| 541 | /// Iterate over untracked files. |
| 542 | pub fn untracked(&self) -> impl Iterator<Item = &FileStatusEntry> { |
| 543 | self.entries |
| 544 | .iter() |
| 545 | .filter(|e| e.status == FileStatus::Untracked) |
| 546 | } |
| 547 | |
| 548 | /// Count of untracked files. |
| 549 | pub fn untracked_count(&self) -> usize { |
no test coverage detected