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

Method all_path_strings

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

549 /// Paths that are not valid UTF-8 are skipped. This is the format
550 /// needed by `RecordOptions::paths` which takes `Vec<String>`.
551 pub fn all_path_strings(&self) -> Vec<String> {
552 self.all_paths()
553 .iter()
554 .filter_map(|p| p.to_str().map(|s| s.to_string()))
555 .collect()
556 }
557
558 /// Merge another `TurnChanges` into this one.
559 ///

Callers 1

Calls 2

all_pathsMethod · 0.80
iterMethod · 0.45

Tested by 1