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

Method untracked

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

Iterate over untracked files.

(&self)

Source from the content-addressed store, hash-verified

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 {

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