Skip to content
Snippets Groups Projects
Commit 54c9ec73 authored by Michael Aaron Murphy's avatar Michael Aaron Murphy
Browse files

Simplify array filter assignment

parent ca2eb635
No related branches found
No related tags found
No related merge requests found
......@@ -218,11 +218,10 @@ impl VariableStore for Shell {
Ok(VariableType::Array(values)) => {
match self.variables.get_mut(key.name) {
Some(VariableType::Array(ref mut array)) => {
let mut iterator: Box<Iterator<Item=&types::Str>> = Box::new(array.iter());
for value in &values {
iterator = Box::new(iterator.filter(move |item| *item != value));
}
*array = iterator.cloned().collect();
*array = array.iter()
.filter(|item| values.iter().all(|value| *item != value))
.cloned()
.collect();
}
None => {
eprintln!("ion: assignment error: {}: cannot head concatenate non-array variable", key.name);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment