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

Changed iter::Extendable and iter::FromIterator to take a Iterator by value. #13039

Closed
wants to merge 1 commit into from

Conversation

Kimundi
Copy link
Member

@Kimundi Kimundi commented Mar 20, 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)

@alexcrichton
Copy link
Member

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!

@erickt
Copy link
Contributor

erickt commented Mar 20, 2014

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 .push_all to convert over to this iterator-based approach.

@alexcrichton
Copy link
Member

@Kimundi, I haven't heard any objection to this, r=me with a rebase.

@Kimundi
Copy link
Member Author

Kimundi commented Mar 25, 2014

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)
@bors bors closed this Mar 26, 2014
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
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants