Namespaces
Variants
Views
Actions

std::execution::schedule

From cppreference.com
Defined in header <experimental/execution>
execution::sender auto schedule(

    execution::scheduler auto scheduler

);
(since C++26)

[edit] Parameters

scheduler - scheduler on which the start of the task graph is scheduled.

[edit] Return value

Returns a sender describing the start of a task graph on the provided scheduler.

[edit] Example