cpp_weekly
cpp_weekly copied to clipboard
The official C++ Weekly Repository. Code samples and notes of future / past episodes will land here at various times. PR's will be accepted in some cases.
**Channel** C++Weekly **Topics** Give an intro to how OpenMP does the equivalent of threads/tasks or loop parallelism. **Length** Would definitely be a longer one.
Some followup is necessary on this topic to look at actual performance and such.
**Channel** Is this a "C++Weekly" or "The [Fill in the Blank] Programmer" episode request? C++ Weekly **Topics** What topics are important to cover for this episode? Based on CppCon quick...
**Channel** This is a "C++Weekly" episode request? **Topics** Using Custom Comparators for STL/Ranges algorithms - Using a Custom Comparator for std::map - Using a Custom Comparator for std::set - Using...
**Channel** C++Weekly **Topics** Observation: A gcc statement expression is probably the same thing as a lambda with `[&]` capture, auto return type, no parameters, immediately invoked. **Length** Short
I feel like whitespace and its benefits are still not fully recognized in the community. There are still horrible examples of missing whitespace as well as many missed opportunities. The...
https://github.com/wjakob/nanobind
https://en.cppreference.com/w/cpp/utility/tuple/ignore
**Channel** This is for "C++Weekly" **Topics** * The programming paradigm itself; * Push vs Pull when processing asynchronous data * Observers vs Enumerators * Callbacks vs coroutines * [ReactiveX](https://reactivex.io/)'s Observer/Observable...
**Channel** C++Weekly **Topics** std::launder was introduced in C++17 as a cure for a problem that is hard to be found. It is intended to be on optimization barier for usages...