Count of untracked files.
(&self)
| 547 | |
| 548 | /// Count of untracked files. |
| 549 | pub fn untracked_count(&self) -> usize { |
| 550 | self.untracked().count() |
| 551 | } |
| 552 | |
| 553 | /// Iterate over added files. |
| 554 | pub fn added(&self) -> impl Iterator<Item = &FileStatusEntry> { |
no test coverage detected