-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Implement ranges::join_view #1436
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
Merged
Merged
Conversation
This file contains hidden or 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
StephanTLavavej
requested changes
Nov 13, 2020
52 tasks
miscco
commented
Nov 13, 2020
miscco
commented
Nov 13, 2020
cd7bf91 to
602c2ca
Compare
Contributor
Author
|
FYI: Filed LWG-3500 for |
AdamBucior
reviewed
Nov 15, 2020
Closed
miscco
commented
Feb 16, 2021
Contributor
Author
miscco
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for fixing it
Addresses microsoft#39
... as is implemented in this PR.
* wrap overlong lines * avoid lambda in `_Iterator::_Satisfy` from throughput paranoia * the MSVC bug was pre-existing
miscco
commented
Mar 16, 2021
miscco
commented
Mar 16, 2021
miscco
commented
Mar 16, 2021
miscco
commented
Mar 16, 2021
miscco
commented
Mar 16, 2021
miscco
commented
Mar 16, 2021
CaseyCarter
reviewed
Mar 16, 2021
CaseyCarter
approved these changes
Mar 16, 2021
CaseyCarter
added a commit
to CaseyCarter/STL
that referenced
this pull request
Mar 17, 2021
Update list of implemented proposals I have verified that all proposals and LWG issues listed in microsoft#39 are implemented either on main, in microsoft#1436, or in microsoft#1731.
CaseyCarter
added a commit
to CaseyCarter/STL
that referenced
this pull request
Mar 17, 2021
Update list of implemented proposals I have verified that all 23 proposals and 35 LWG issues listed in microsoft#39 are implemented either on main, in microsoft#1436, or in microsoft#1731.
StephanTLavavej
approved these changes
Mar 17, 2021
STL's mechanical fixes. (I certainly won't miss working in `// clang-format off` zones when clang-format learns concepts and requires-clauses.) Co-authored-by: Stephan T. Lavavej <stl@nuwen.net>
STL's non-mechanical suggestion.
StephanTLavavej
approved these changes
Mar 17, 2021
Contributor
|
I will join you in celebrating finally merging this PR! 🎉 |
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.
Implements the resolutions of LWG-3448, LWG-3474, LWG-3500, LWG-3517, and another as-yet unnumbered LWG issue which corrects the discrepancy introduced by LWG-3313 between the constraints on
join_view::iterator::operator--()/::operator--(int)and the definition ofiterator_concept/iterator_category.