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

Method all_path_strings

atomic-agent/src/event.rs:543–548  ·  view source on GitHub ↗

Returns all affected paths as string slices. Paths that are not valid UTF-8 are skipped. This is the format needed by `RecordOptions::paths` which takes `Vec `.

(&self)

Source from the content-addressed store, hash-verified

541 /// Paths that are not valid UTF-8 are skipped. This is the format
542 /// needed by `RecordOptions::paths` which takes `Vec<String>`.
543 pub fn all_path_strings(&self) -> Vec<String> {
544 self.all_paths()
545 .iter()
546 .filter_map(|p| p.to_str().map(|s| s.to_string()))
547 .collect()
548 }
549
550 /// Merge another `TurnChanges` into this one.
551 ///

Callers 1

Calls 2

all_pathsMethod · 0.80
iterMethod · 0.45

Tested by 1