Pure Virtual C++ Videos Available
All videos from the Pure Virtual C++ 2023 conference are now online.
Pure Virtual C++ Videos Available
by Sy Brand
From the announcement:
Overall we had 18 videos on a wide variety of C++ topics, from Rust interop, to value semantics, to improving compiler errors.

Registration is now open for CppCon 2023! The conference starts on October 1 and will be held
I continue my journey with concurrency patterns in today's post. The Thread-Safe Interface fits very well when the critical sections are just objects.
Fold expressions exist in C++ since C++17 and significantly affect how we treat variadic templates. Back in the day, I wrote about
Registration is now open for CppCon 2023! The conference starts on October 1 and will be held
Locking is a straightforward idea to protect a critical section. A critical section is a section of code that, at most, one thread can use at any time.
Registration is now open for CppCon 2023! The conference starts on October 1 and will be held
C++ allows us to declare various forms of non-local objects: they usually live throughout the execution of the whole program. In this article, we’ll look at global variables, dynamic, and thread-local objects. We’ll also consider new features for safe initialization C++20.