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

Method all_path_strings

atomic-agent/src/event.rs:933–938  ·  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

931 /// Paths that are not valid UTF-8 are skipped. This is the format
932 /// needed by `RecordOptions::paths` which takes `Vec<String>`.
933 pub fn all_path_strings(&self) -> Vec<String> {
934 self.all_paths()
935 .iter()
936 .filter_map(|p| p.to_str().map(|s| s.to_string()))
937 .collect()
938 }
939
940 /// Merge another `TurnChanges` into this one.
941 ///

Callers 1

Calls 2

all_pathsMethod · 0.80
iterMethod · 0.45

Tested by 1