...

/

Introduction to std::async

Introduction to std::async

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

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