drop redundant iter -> vec -> iter

This commit is contained in:
jacremer 2021-10-05 15:09:51 -07:00
parent cc8a470668
commit b3b51a2ed6

View File

@ -124,18 +124,13 @@ impl Command for Cp {
let sources = sources.paths_applying_with(|(source_file, depth_level)| {
let mut dest = destination.clone();
let path = canonicalize_with(&source_file, &path)?;
let comps: Vec<_> = path
let components = path
.components()
.map(|fragment| fragment.as_os_str())
.rev()
.take(1 + depth_level)
.collect();
for fragment in comps.into_iter().rev() {
dest.push(fragment);
}
.take(1 + depth_level);
components.for_each(|fragment| dest.push(fragment));
Ok((PathBuf::from(&source_file), dest))
})?;