Creating a task completion source for a C++ coroutine 3--Raymond Chen
The series continue.
Creating a task completion source for a C++ coroutine: Producing nothing
by Raymond Chen
From the article:
Last time, we created a result_holder that can hold a reference, and we solved it by using a wrapper. But there’s another type that we can’t put in a result_holder, not even with the help of a wrapper. That type is void...