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 std::iter::once/empty (RFC 771) #25817

Merged
merged 1 commit into from
May 30, 2015

Conversation

XMPPwocky
Copy link
Contributor

Closes #24443.

@rust-highfive
Copy link
Contributor

Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @aturon (or someone else) soon.

If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. The way Github handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes.

Please see CONTRIBUTING.md for more information.

/// An iterator that yields an element exactly once.
#[unstable(feature="core", reason = "new addition")]
pub struct Once<T> {
inner: ::option::IntoIter<T>
Copy link
Contributor

Choose a reason for hiding this comment

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

I guess a use option at the beginning would be nicer than the global path here.

Copy link
Contributor

Choose a reason for hiding this comment

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

::option::IntoIter<T> isn't really necessary. You could just use Option + take().

Copy link
Member

Choose a reason for hiding this comment

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

I would recommend using IntoIter (or some other iterator adapator) as it allows proxying the next, next_back, and size_hint functions (primarily size_hint)

Copy link
Contributor

Choose a reason for hiding this comment

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

That's three levels of indirection (IntoIter -> Item -> Option) but I guess they'll just get optimized away anyways.

@bluss
Copy link
Member

bluss commented May 27, 2015

These iterators should implement Clone, DoubleEndedIterator and ExactSizeIterator too.

@Stebalien
Copy link
Contributor

IMHO, they should also implement Default so that structs that include them can derive Default.

@@ -3030,6 +3030,45 @@ pub fn repeat<T: Clone>(elt: T) -> Repeat<T> {
Repeat{element: elt}
}

/// An iterator that yields nothing.
#[unstable(feature="core", reason = "new addition")]
Copy link
Member

Choose a reason for hiding this comment

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

Could this use a different feature name than "core" here as well? Something like iter_empty and iter_once should be fine. Also, can you tag the impl blocks below with #[unstable] as well?

@alexcrichton
Copy link
Member

I agree with @bluss that it'd be nice to see the other common iterator traits implemented for these primitives as well (they should be pretty easy).

@XMPPwocky
Copy link
Contributor Author

@alexcrichton This good?

@Stebalien
Copy link
Contributor

You could also impl Default on once<T>() but I'm ambivalent.

/// An iterator that yields an element exactly once.
#[unstable(feature="iter_once", reason = "new addition")]
pub struct Once<T> {
inner: ::option::IntoIter<T>
Copy link
Contributor

Choose a reason for hiding this comment

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

I guess a use option at the beginning would be nicer than the global path here.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I'd do that if I used it twice, but adding an import to a 3000+ line file to save two colons on one line seemed excessive.

Copy link
Contributor

Choose a reason for hiding this comment

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

It's unusual to use a global path, though.

Copy link
Contributor

Choose a reason for hiding this comment

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

Alternatively just store Option and return self.inner.take() on next?

@bluss
Copy link
Member

bluss commented May 27, 2015

Thank you @XMPPwocky I've needed these iterators!

@alexcrichton
Copy link
Member

This looks good to me, thanks @XMPPwocky! r=me with a squash

@@ -167,6 +167,7 @@ mod core {
pub use marker;
pub use option;
pub use iter;
pub use default;
Copy link
Member

Choose a reason for hiding this comment

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

Is this still necessary?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Looks like it's not.

On Wed, May 27, 2015 at 3:30 PM, Alex Crichton notifications@github.com
wrote:

In src/libcore/lib.rs
#25817 (comment):

@@ -167,6 +167,7 @@ mod core {
pub use marker;
pub use option;
pub use iter;

  • pub use default;

Is this still necessary?


Reply to this email directly or view it on GitHub
https://github.com/rust-lang/rust/pull/25817/files#r31187466.

@bors
Copy link
Collaborator

bors commented May 29, 2015

☔ The latest upstream changes (presumably #25747) made this pull request unmergeable. Please resolve the merge conflicts.

@alexcrichton
Copy link
Member

@bor: r+ 103e79d

@alexcrichton
Copy link
Member

@bors: r+ 103e79d

@bors
Copy link
Collaborator

bors commented May 29, 2015

⌛ Testing commit 103e79d with merge e67cab4...

@bors
Copy link
Collaborator

bors commented May 29, 2015

⛄ The build was interrupted to prioritize another pull request.

@bors
Copy link
Collaborator

bors commented May 30, 2015

⌛ Testing commit 103e79d with merge a0f028d...

bors added a commit that referenced this pull request May 30, 2015
@bors bors merged commit 103e79d into rust-lang:master May 30, 2015
@XMPPwocky XMPPwocky deleted the once_cleanedup branch May 30, 2015 04:54
#[test]
fn test_empty() {
let mut it = empty::<i32>();
assert_eq!(it.next(), None);
Copy link
Contributor

Choose a reason for hiding this comment

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

Maybe add another assert_eq to check that the iterators are fused? And above for once.

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.

Tracking issue for Std::iter::{once, empty} (RFC 771)
9 participants