-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
implement size_hint on sys iterators #71308
Conversation
r? @sfackler (rust_highfive has picked a reviewer for you, use r? to override) |
Marking as draft because i'm expecting some CI failures |
src/libstd/sys/cloudabi/shims/fs.rs
Outdated
@@ -140,6 +140,10 @@ impl Iterator for ReadDir { | |||
fn next(&mut self) -> Option<io::Result<DirEntry>> { | |||
match self.0 {} | |||
} | |||
|
|||
fn size_hint(&self) -> (usize, Option<usize>) { | |||
(0, Some(0)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This type is uninhabited - does it really need a size_hint override?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah that makes sense to remove it. I just ported the old pr :D
The job Click to expand the log.
I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
@@ -299,6 +299,9 @@ impl Iterator for LookupHost { | |||
fn next(&mut self) -> Option<SocketAddr> { | |||
match self.0 {} | |||
} | |||
fn size_hint(&self) -> (usize, Option<usize>) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All of these are uninhabited as well.
The job Click to expand the log.
I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
I don't see much gain from this though.. guess i'll close it for now :D |
Addresses #49205
Rework of #49552