Learn C++ Standards through this panel discussion lead by members of the C++ Standard Committee. Alongside the C++’s creator, the panelists also include leaders of key subgroups, who are the ones responsible for the evolution of language and library and subjects. The panel discussion also provides a portrayal of new forward-thinking with the members of some of the newest national bodies to…
Learn C++ With Building an Intuition for Composition by Sy Brand (CPPCon 2020) Video
December 19, 2020
This video is for you if you’re tired of reading posts about “monads” and “endofunctors” that does not give you an idea of how they can actually support and improve your C++ programming. In C++, functions and data composition are becoming more…
Learn C++ With Embedded: Customizing Dynamic Memory Management in C++ by Ben Saks (CPPCon 2020) Videos
December 18, 2020
For several common programming problems, Dynamic Memory Allocation is a normal solution. New-expressions in C++ places dynamic memory through a function called operator new. However, too many resource-stricted systems fully ignore the use of new-expressions for customization, which is unfortunate because it has been developed for such purposes. This talk demonstrates how tailored dynamic memory…