[memory.syn][specialized.algorithms] Prefer trailing returns on complex signatures #6964
+107
−100
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.
This proposed change follows the observation that when function template signatures get complicated, especially with long names for return types, and non-trivial requires clauses, it can be very hard to spot the function name and return type among the sea of tokens, in order to start mentally parsing the function.
Here we propose using the trailing return type form of function declaration in those cases, and apply it consistently to the special algorithms in the
<memory>
header as a non-trivial sample size to gauge interest in a more complete PR that would cover the whole ranges library.