Iterate over untracked files.
(&self)
| 552 | |
| 553 | /// Iterate over untracked files. |
| 554 | pub fn untracked(&self) -> impl Iterator<Item = &FileStatusEntry> { |
| 555 | self.entries |
| 556 | .iter() |
| 557 | .filter(|e| e.status == FileStatus::Untracked) |
| 558 | } |
| 559 | |
| 560 | /// Count of untracked files. |
| 561 | pub fn untracked_count(&self) -> usize { |
no test coverage detected