Introduction to std::async

This lesson gives an introduction to std::async which is used in C++ for multithreading.

We'll cover the following...

std::async behaves like an asynchronous function call. This function call takes a callable together with its arguments. ...