This repo consists of illustrative code for the techniques introduced in the C++11 / C++14 standard explained in the book.
The notes written for each subsections are a lot less elaborate than what is written in the book. You should buy the book for greater details, and because its a good read for C++ developers.
This chapter contains technologies that were introduced by C++11 and C++14.
Smart pointers (std::unique_ptr, std::shared_ptr, std::weak_ptr), implement PIMPL using smart pointers
This chapter explains how lambdas should be used, especially in C++14, and why std::bind should be avoided (after C++11).
- Item 16 needs extension
- Item 14 needs more examples!