December 2020
Intermediate to advanced
544 pages
12h 45m
English
The use of containers from the standard library is widely employed among C++ programmers. It's rare to find C++ code bases without references to std::vector or std::string, for example. However, in my experience, standard library algorithms are much less frequently used, even though they offer the same kind of benefits as containers:
If this wasn't enough, C++ features such as lambdas, execution policies, concepts, and ranges have ...