-
Notifications
You must be signed in to change notification settings - Fork 769
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
[algorithm.syn] Algorithm ordering inconsistency #2218
Comments
This was moved by #1245, which didn't reorder the synopsis to match. |
@timsong-cpp, thanks for the archeology. So, the synopsis should be fixed. @CaseyCarter, go ahead. |
CaseyCarter
added a commit
to CaseyCarter/draft
that referenced
this issue
Jun 27, 2018
between the "binary_search" family and the "merge" family, to agree with the order of the detailed specifiations as reordered by cplusplus#1245. Fixes cplusplus#2218.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In the algorithm synopsis, the declarations of the "partitions" (
is_partitioned
,partition
,stable_partition
,partition_copy
, andpartition_point
) precede the declarations of the other "Sorting and related operations" (sort
,nth_element
, etc.) whereas the specifications of the "partitions" are located in [alg.partitions], smack in the middle of [alg.sorting], between [alg.binary.search] and [alg.merge].I believe that:
If people agree with (1), I'll submit a PR. The exact form of that PR will depend on whether or not people agree with (2).
The text was updated successfully, but these errors were encountered: