Add StoreIdIterator::with_store()
This commit is contained in:
parent
c791977aab
commit
d59dca1a23
1 changed files with 4 additions and 0 deletions
|
@ -266,6 +266,10 @@ impl StoreIdIterator {
|
||||||
StoreIdIterator { iter }
|
StoreIdIterator { iter }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn with_store<'a>(self, store: &'a Store) -> StoreIdIteratorWithStore<'a> {
|
||||||
|
StoreIdIteratorWithStore(self, store)
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Iterator for StoreIdIterator {
|
impl Iterator for StoreIdIterator {
|
||||||
|
|
Loading…
Reference in a new issue