-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
Rename iter::Iterator::intersperse() to ::separate() #123110
Conversation
Some changes occurred in src/tools/clippy cc @rust-lang/clippy HIR ty lowering was modified cc @fmease These commits modify compiler targets. Some changes occurred in src/librustdoc/clean/types.rs cc @camelid |
r? libs-api |
Just wanted to note that there was some disagreement in the associated issue about whether we should merge |
☔ The latest upstream changes (presumably #123396) made this pull request unmergeable. Please resolve the merge conflicts. |
Not to bikeshed too much, but I think Something along the lines of |
To give an update, we're currently trying to work around the naming conflict with a language-level feature: #89151 (comment) |
Superseded by #89151 |
Following up in the suggestion voiced here, this
Iterator::intersperse()
toIterator::separate()
"intersperse"
onseparate()
Iterator::intersperse_with()
toIterator::separate_with()
in order to move on wrt #79524. I have no opinion wrt #79524 (comment) being the correct solution to solve #79524