...

/

C++17: Parallel Algorithms of the Standard Template Library

C++17: Parallel Algorithms of the Standard Template Library

A short introduction of parallel algorithms of the standard template library in C++17.

We'll cover the following...
widget

With C++17, concurrency in C++ has drastically changed - particularly for the parallel algorithms of the Standard Template Library (STL). C++11 and C++14 only provide the basic building blocks for concurrency. These tools are suitable for a library or framework developer, but not for the application developer. Multithreading in C++11 and C++14 will become an assembly language for concurrency in ...