Implement size_hint for more iterators.

```
implement size hint for
more iterators because why
not we like fast things
```
This commit is contained in:
Corey Farwell 2017-09-13 20:23:58 -04:00
parent cad3aff508
commit 9cd4535364
8 changed files with 36 additions and 0 deletions

View file

@ -99,6 +99,10 @@ impl<'a> Iterator for DeclarationImportanceIterator<'a> {
self.iter.next().map(|(decl, important)|
(decl, if important { Importance::Important } else { Importance::Normal }))
}
fn size_hint(&self) -> (usize, Option<usize>) {
self.iter.size_hint()
}
}
impl<'a> DoubleEndedIterator for DeclarationImportanceIterator<'a> {