Skip to content
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 missing iterator traits for slice::Windows #22166

Merged
merged 1 commit into from
Feb 12, 2015

Conversation

dcrewi
Copy link
Contributor

@dcrewi dcrewi commented Feb 11, 2015

  • DoubleEndedIterator
  • ExactSizeIterator
  • RandomAccessIterator

@rust-highfive
Copy link
Contributor

r? @alexcrichton

(rust_highfive has picked a reviewer for you, use r? to override)

}

#[stable(feature = "rust1", since = "1.0.0")]
impl<'a, T> ExactSizeIterator for Windows<'a, T> {}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks like it may not actually be able to be implemented due to this line in size_hint:

(x.saturating_add(1), x.checked_add(1))

If x were uint::MAX then this would return (uint::MAX, None), breaking the contract of ExactSizeIterator. The value of x, however is self.v.len() - self.size and we know that size != 0 so we're guaranteed that the checked_add will always return Some.

Could you update the above size_hint to return (x + 1, Some(x + 1)) to be clear that it is a precise size?

- DoubleEndedIterator
- ExactSizeIterator
- RandomAccessIterator
@dcrewi dcrewi force-pushed the iter-impls-for-windows branch from d6cc1ee to cf475e6 Compare February 11, 2015 23:07
@dcrewi
Copy link
Contributor Author

dcrewi commented Feb 11, 2015

Changes force-pushed.

@alexcrichton
Copy link
Member

@bors: r+ cf475e6

Thanks!

alexcrichton added a commit to alexcrichton/rust that referenced this pull request Feb 11, 2015
- DoubleEndedIterator
- ExactSizeIterator
- RandomAccessIterator
@bors bors merged commit cf475e6 into rust-lang:master Feb 12, 2015
@dcrewi dcrewi deleted the iter-impls-for-windows branch February 12, 2015 19:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants