std::execution::schedule, std::execution::schedule_result_t

Header: <execution>

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

# Declarations

struct schedule_t { /*unspecified*/ };

(since C++26)

inline constexpr schedule_t schedule{};

(since C++26) (customization point object)

Call signature
execution::sender auto schedule( execution::scheduler auto sch );

(since C++26)

Helper result types
template< execution::scheduler Sch >
using schedule_result_t = decltype(schedule(std::declval<Sch>()));

(since C++26)

# Example

This section is incompleteReason: no example