Merged
Conversation
Sort type traits so the order matches cppreference. Add missing is_aggregate trait. Fix callable trait names and add invoke_result.
Add missing member variables to random number engines and localization facet categories.
Add missing filesystem::perm_options type, and missing bitwise operators for copy_options and directory_options types.
Adds since C++11 attribute to a number of entities.
This adds a number of missing C++17 and C++14 entries: * byte type * uncaugt_exceptions * initializer_list: rbegin and rend * to_chars, from_chars, chars_format * string: operator basic_string_view Also fixes a couple of other issues, including: * Change tags from `operator` to `function` * Change enum to class for types with overloaded operators * Fix `since` attribute of for_each_n * Move unary_function and binary_function to function objects section * Add bit_xor and fix bit_not `since` attribute
Adds C++20 uniform container erasure, `contains` for associative containers, std::span, and UTF-8 string additions.
Contributor
Author
|
That CI failure seems completely unrelated, do you want me to fix it in this PR? I could do a separate PR if I can figure out what the problem is. |
Owner
|
Looks great! Thank you. CI failure looks unrelated. |
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.
Did a little maintenance on the index files: added C++20 stuff, fixed a couple missing things, that sort of thing.
I'm not totally sure how to handle
enum classthough, from the index readme I take it thatoverloadisn't allowed inside anenumtag so I usedclassinstead. If the processing scripts can handleoverloadinenumwe should change all the enum classes to useenumproper.