Boost
C++ Libraries
...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
This is an older version of Boost and was released in 2022. The current version is 1.90.0.
Start a new stackful coroutine, calling the specified handler when it completes.
template< typename Function> void spawn( Function && function, const boost::coroutines::attributes & attributes = boost::coroutines::attributes());
This function is used to launch a new coroutine.
The coroutine function. The function must have the signature:
void function(basic_yield_context<Handler> yield);
Boost.Coroutine attributes used to customise the coroutine.