Replace .map().all(|x| x) by calling .all() in the first place

This commit is contained in:
Matthias Beyer 2016-09-02 17:01:40 +02:00
parent 8e779fc87e
commit 85f79ae3e5
1 changed files with 2 additions and 3 deletions

View File

@ -102,11 +102,10 @@ impl StoreId {
self.id
.components()
.zip(colls)
.map(|(component, pred_coll)| match component {
.all(|(component, pred_coll)| match component {
Component::Normal(ref s) => s.to_str().map(|ref s| s == pred_coll).unwrap_or(false),
_ => false
})
.all(|x| x) && colls.last().map(|last| !self.id.ends_with(last)).unwrap_or(false)
}) && colls.last().map(|last| !self.id.ends_with(last)).unwrap_or(false)
}
}