|
You are here |
herbsutter.com | ||
| | | | |
isocpp.org
|
|
| | | | | [AI summary] This is a comprehensive list of proposals (PXXXRYY) submitted to the C++ standards committee, covering a wide range of topics such as concurrency, memory management, type traits, algorithms, and language features. The proposals span from early drafts to more recent versions and reflect the evolution of C++ over several years. | |
| | | | |
brevzin.github.io
|
|
| | | | | One of the reasons that I'm excited for Reflection in C++ is that it can permit you to implement, as a library, many things that previously required language features. In this post, I'm going to walk through implementing P2786R8 ("Trivial Relocatability For C++26"). | |
| | | | |
eyakubovich.github.io
|
|
| | | | | The Google Style Guide (GSG) for C++ has become popular outside of just Google. But I don't like it at all. There... I said it. Now I want to take this opportunity to explain why I feel so strongly about it. GSG "style" The general observation is that the style... | |
| | | | |
quuxplusone.github.io
|
|
| | | Via StackOverflow: Newcomers to C++20 Ranges are often surprised that some ranges cannot be "const-iterated." But it's true! template<std::ranges::range R> void foreach(const R& rg) { // Wrong! for (auto&& elt : rg) { } } | ||