Conversation
Several statements on these pages did not match the implementation. - Prefix `++` and `--` were listed with the regular SOPs, whose accessors return the result of the dispatch. The prefix forms return the operand, and the postfix forms take an `int` and return the result, so both now have their own section. - The right-hand-side assignment operators were specified on `R(Arg) cv ref noex` and said to return the proxy operand. They are specialized on `R(Arg&) cv ref noex`, take the left operand by lvalue reference, and return it. - The table of `operator_dispatch` gave `!self` for `"~"`. - The accessor of `implicit_conversion_dispatch` was said to invoke without the dispatch type. - The assignment paragraph was labeled `(4)` instead of its own number, the `"!"` and `"~"` section read "either ... and ...", the specializations in the code blocks lacked their semicolons, and two sentences had a doubled space.
This branch has not been deployed
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
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.
Several statements on these pages did not match the implementation.
++and--were listed with the regular SOPs, whose accessors return the result of the dispatch. The prefix forms return the operand, and the postfix forms take anintand return the result, so both now have their own section.R(Arg) cv ref noexand said to return the proxy operand. They are specialized onR(Arg&) cv ref noex, take the left operand by lvalue reference, and return it.operator_dispatchgave!selffor"~".implicit_conversion_dispatchwas said to invoke without the dispatch type.(4)instead of its own number, the"!"and"~"section read "either ... and ...", the specializations in the code blocks lacked their semicolons, and two sentences had a doubled space.