std::execution::run_loop::run_loop
From cppreference.com
run_loop() noexcept;
|
(1) | (since C++26) |
run_loop( run_loop&& ) = delete;
|
(2) | (since C++26) |
Constructs a run_loop object.
1) Constructs an execution resource with an empty queue.
2) Move construction is deleted.
Example
| This section is incomplete Reason: no example |