#cppsenioreas — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #cppsenioreas, aggregated by home.social.
-
Learn all about reverse iteration in C++, including a simple pre-C++20 method: `for (auto elem : reverse_view(container))`. No ranges library needed!
#cpp #ranges #iterators #programming #CppSenioreas #cplusplus
https://cppsenioreas.wordpress.com/2025/01/01/reverse-iterations-cpp/
-
We're diving into the dark magic of ADL in C++—a spell that summons hidden dependencies and lurking bugs. Join us as we uncover its secrets and learn how to avoid its traps! ✨🔍
#Cplusplus #Cpp #CleanCode #CodingTips #Programming #ADL #CppSenioreas
https://cppsenioreas.wordpress.com/2024/10/27/adl-avoid-debugging-later/
-
New article is available on C++ Senioreas:
It's just ',' - Comma Operator C++
https://cppsenioreas.wordpress.com/2024/10/21/its-just-comma-the-comma-operator-cpp/#cpp #cppsenioreas #cpp17 #cpp20 #cpp23 #discussion #programming #cppprogramming
-
After more than a year I've managed to get a good logo for the article "The Shared, The Unique and The Weak" from ChatGPT:
https://cppsenioreas.wordpress.com/2023/02/21/the-shared-the-unique-and-the-weak/
🥳🥳
Feel free to share it with friends :)
#cpp #cppsenioreas #chatgpt #ai -
```
template auto func(Args... args) { return (args || ... ); }std::cout << func("str");
```Does it compile? What will be the output?
Answers in the article :)
https://cppsenioreas.wordpress.com/2023/05/22/into-the-extreme-fold-expressions/Special thanks for a lightning conversion Daisy Hollman!
#cpp #cppsenioreas #metaprogramming #programming #development
-
explicit(bool) C++20 feature discussion, motivation, usage example, proposal and more. Basic explanation about explicit and implicit conversions pros and cons.
https://cppsenioreas.wordpress.com/2023/04/10/explicitto-be-to-be/