Mastering Modern C++

Mastering Modern C++

English | MP4 | AVC 1920×1080 | AAC 48KHz 2ch | 2h 13m | 300 MB

Master the art of development with Modern C++ type system

In this course we’ll learn how to write correct, safe, and performant code by making use of C++’s type system. Firstly, we’ll learn about the Standard Library’s “algebraic data types” and how they can increase safety, performance, and readability of your application/library. We’ll then look at function interfaces. As an example, writing a function that takes a string in such a way that it performs optimally with both std::string and const char* seems like a daunting task. It gets even more tricky with functions taking other functions as input. Is it possible to generalize these issues and provide the “perfect” interface?

This video course carefully guides the audience through an overview of the new C++17 language and library features, providing realistic usage examples. Implementations of novel utilities are also explained in a step-by-step fashion.

What You Will Learn

  • Use type system to your advantage
  • Create safe, rich and expressive interfaces
  • Use Pattern matching to implement metaprogramming
  • Real world scenarios to tackle programming tasks