Count of untracked files.
(&self)
| 559 | |
| 560 | /// Count of untracked files. |
| 561 | pub fn untracked_count(&self) -> usize { |
| 562 | self.untracked().count() |
| 563 | } |
| 564 | |
| 565 | /// Iterate over added files. |
| 566 | pub fn added(&self) -> impl Iterator<Item = &FileStatusEntry> { |
no test coverage detected