mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
Implement size_hint
for more iterators.
``` implement size hint for more iterators because why not we like fast things ```
This commit is contained in:
parent
cad3aff508
commit
9cd4535364
8 changed files with 36 additions and 0 deletions
|
@ -170,6 +170,10 @@ impl Iterator for EffectiveSources {
|
|||
fn next(&mut self) -> Option<Source> {
|
||||
self.0.pop()
|
||||
}
|
||||
|
||||
fn size_hint(&self) -> (usize, Option<usize>) {
|
||||
(self.0.len(), Some(self.0.len()))
|
||||
}
|
||||
}
|
||||
|
||||
struct FontFaceRuleParser<'a, 'b: 'a> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue