cpp20
Here are 215 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 27, 2020 - C++
-
Updated
Jun 3, 2020 - C++
-
Updated
Jun 29, 2020 - C++
-
Updated
Jun 28, 2020 - C++
-
Updated
Jun 29, 2020 - C++
Provide nice Unicode symbols for fractional exponents wherever possible.
using namespace units;
using namespace units::si::literals;
std::cout << sqrt(1m) << "\n";-
Updated
Jun 27, 2020 - C++
-
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 25, 2020 - C++
-
Updated
May 24, 2020 - C++
Rename
- back_coordinate -> ???
- front_coordinate -> ???
Documentation issues:
pointed out by @joergi-w in seqan/seqan3#1093 (review)
-
The back coordinate stores the end of the alignment within both sequen
-
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
Jun 28, 2020 - C++
-
Updated
Jun 28, 2020 - C++
-
Updated
Jun 1, 2020 - Python
-
Updated
Nov 30, 2019 - C++
-
Updated
Apr 25, 2020 - C++
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