cpp20
Here are 201 public repositories matching this topic...
-
Updated
Jun 3, 2020 - C++
I couldn't find this in the documentation or the FAQ: Is it possible to obtain the current test case's name from within that testcase's code? I mean, it should be, but how do we do it? That should be either in the FAQ or in some other relevant documentation file, IMHO.
-
Updated
May 22, 2020 - C++
As for Display the special operations generated by the compiler #224 discussion, the documentation will improve if we had a section describing the transformation of each featre and his limitations.
In particular for the special operation, to explain that only the operations that are really generated would appear in the transformation. This is due to the fact that the tool s based on the AST.
-
Updated
Jun 6, 2020 - C++
-
Updated
Jun 3, 2020 - C++
-
Updated
Jun 9, 2020 - C++
-
Updated
Jun 12, 2020 - C++
-
Updated
Jun 8, 2020 - C++
Provide nice Unicode symbols for fractional exponents wherever possible.
using namespace units;
using namespace units::si::literals;
std::cout << sqrt(1m) << "\n";NTTP `ratio`
-
Updated
Apr 4, 2020 - C++
The current demo project shows off the features of the project well, but it's probably better to have some kind of written guide to get developers up to speed.
-
Updated
Jun 11, 2020 - C++
-
Updated
May 24, 2020 - C++
In Core Meeting (2020-03-23) we decided that stuff that will be part of C++20 and that we implement in seqan3 already should be defined in the std namespace and included via the respective header.
This means
- move
remove_cvref_ttostd/type_traits.
https://github.com/seqan/seqan3/blob/7a360e2e3bc32c92643
-
Updated
Jun 3, 2020 - C++
AddIfNotThere ModOp
should exactly work like an add, but with a precheck if the added content is already there on the same level, in which case it does not add it.
Useful for making mods modular with building menu.
Example:
Mod A and Mod B should insert Buildings into the modded category 9000.
For no dependency between both mods the building category 9000 needs to be created and set up, and also added to t
Create more examples
-
Updated
May 26, 2020 - C++
-
Updated
May 13, 2020 - C++
-
Updated
Jun 1, 2020 - Python
-
Updated
Nov 30, 2019 - C++
-
Updated
Apr 25, 2020 - C++
-
Updated
Feb 1, 2019 - CMake
Improve this page
Add a description, image, and links to the cpp20 topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the cpp20 topic, visit your repo's landing page and select "manage topics."


The doc is great! Hoewever some areas are still missing.
C++11 intoduced raw string literals: https://en.cppreference.com/w/cpp/language/string_literal
It is useful in many different areas, like strings with quotes, multiline strings and for example windows paths without escaping backslashes:
The same cppreference link als