Iros
 
Loading...
Searching...
No Matches
schedule.h
Go to the documentation of this file.
1#pragma once
2
5
6namespace di::execution {
7namespace detail {
9 template<typename Scheduler>
11 constexpr auto operator()(Scheduler&& scheduler) const -> concepts::Sender auto {
12 return function::tag_invoke(*this, util::forward<Scheduler>(scheduler));
13 }
14 };
15}
16
17constexpr inline auto schedule = detail::ScheduleFunction {};
18}
Definition sender.h:11
Definition tag_invoke.h:33
Definition read.h:70
Definition bulk.h:30
constexpr auto schedule
Definition schedule.h:17
constexpr tag_invoke_detail::TagInvokeFn tag_invoke
Definition tag_invoke.h:22