std::execution::run_loop::~run_loop
From cppreference.com
~run_loop();
|
(since C++26) | |
Destroys a run_loop object.
Effects
If the run_loop instance's count is not 0, or if its state is running, invokes std::terminate.
Otherwise, has no effects.
Example
| This section is incomplete Reason: no example |