-
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
Changed iter::Extendable
and iter::FromIterator
to take a Iterator
by value.
#13039
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I think this should be discussed because it's changing a very core module. I'm very much in favor of this change, I've always wanted it! |
I'm in favor of this, and was working on a patch to do this myself. Also, I have in that work a PR that'll convert all users of |
@Kimundi, I haven't heard any objection to this, r=me with a rebase. |
rebased |
bors
added a commit
that referenced
this pull request
Mar 26, 2014
# Summary Changed `iter::Extendable` and `iter::FromIterator` to take a `Iterator` by value. These functions always exhaust the passed `Iterator`, and are often used for transferring the values of a new `Iterator` directly into a data structure, so using them usually require the use of the `&mut` operator: ``` foo.extend(&mut bar.move_iter()); // Transfer content from bar into foo let mut iter = ...; foo.extend(&mut iter); // iter is now empty ``` This patch changes both the `FromIterator` and `Extendable` traits to take the iterator by value instead, which makes the common case of using these traits less heavy: ``` foo.extend(bar.move_iter()); // Transfer content from bar into foo let iter = ...; foo.extend(iter); // iter is now inaccessible if it moved // or unchanged if it was Pod and copied. ``` # Composability This technically makes the traits less flexible from a type system pov, because they now require ownership. However, because `Iterator` provides the `ByRef` adapter, there is no loss of functionality: ``` foo.extend(iter.by_ref()); // Same semantic as today, for the few situations where you need it. ``` # Motivation This change makes it less painful to use iterators for shuffling values around between collections, which makes it more acceptable to always use them for this, enabling more flexibility. For example, `foo.extend(bar.move_iter())` can generally be the fastest way to append an collections content to another one, without both needing to have the same type. Making this easy to use would allow the removal of special cased methods like `push_all()` on vectors. (See #12456) I opened #13038 as well, to discuss this change in general if people object to it. # Further work This didn't change the `collect()` method to take by value `self`, nor any of the other adapters that also exhaust their iterator argument. For consistency this should probably happen in the long term, but for now this is too much trouble, as every use of them would need to be checked for accidentally changed semantic by going `&mut self -> self`. (which allows for the possibility that a `Pod` iterator got copied instead of exhausted without generating a type error by the change)
lnicola
pushed a commit
to lnicola/rust
that referenced
this pull request
Aug 23, 2022
…ightly-checking-code, r=Veykril chore: remove unused `currentExtensionIsNightly()` in `config.ts` I was debugging an unrelated issue in rust-analyzer, but came across this unused code and figured that it's fine to send a fully red PR :)
flip1995
pushed a commit
to flip1995/rust
that referenced
this pull request
Mar 20, 2025
…4371) Closes rust-lang#13039 changelog: [`unnecessary_safety_comment`]: fix FP on desugared assign
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Changed
iter::Extendable
anditer::FromIterator
to take aIterator
by value.These functions always exhaust the passed
Iterator
, and are often used for transferring the values of a newIterator
directly into a data structure, so using them usually require the use of the&mut
operator:This patch changes both the
FromIterator
andExtendable
traits to take the iterator by value instead, which makes the common case of using these traits less heavy:Composability
This technically makes the traits less flexible from a type system pov, because they now require ownership.
However, because
Iterator
provides theByRef
adapter, there is no loss of functionality:Motivation
This change makes it less painful to use iterators for shuffling values around between collections, which makes it more acceptable to always use them for this, enabling more flexibility.
For example,
foo.extend(bar.move_iter())
can generally be the fastest way to append an collections content to another one, without both needing to have the same type. Making this easy to use would allow the removal of special cased methods likepush_all()
on vectors. (See #12456)I opened #13038 as well, to discuss this change in general if people object to it.
Further work
This didn't change the
collect()
method to take by valueself
, nor any of the other adapters that also exhaust their iterator argument. For consistency this should probably happen in the long term, but for now this is too much trouble, as every use of them would need to be checked for accidentally changed semantic by going&mut self -> self
. (which allows for the possibility that aPod
iterator got copied instead of exhausted without generating a type error by the change)