libcoro
1.0
Coroutine support library for C++20
|
◆ attach()
template<typename T >
Attach future to internal linked list. Futures can be chained into linked list. This allows to control this "internal" linked list. This function is added to support combining of promises
For better performance, always attach existing linked list to a new root newitem->attach(list);
list = newitem;
|