MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / untracked

Method untracked

atomic-repository/src/status.rs:554–558  ·  view source on GitHub ↗

Iterate over untracked files.

(&self)

Source from the content-addressed store, hash-verified

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 {

Callers 10

run_pushMethod · 0.80
print_long_formatMethod · 0.80
print_short_formatMethod · 0.80
runMethod · 0.80
import_branchMethod · 0.80
runMethod · 0.80
record_turnFunction · 0.80
untracked_countMethod · 0.80
untracked_filesMethod · 0.80

Calls 1

iterMethod · 0.45

Tested by

no test coverage detected