Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions source/exec.tex
Original file line number Diff line number Diff line change
Expand Up @@ -562,16 +562,16 @@
template<class Sndr, class Env = env<>,
template<class...> class Tuple = @\exposid{decayed-tuple}@,
template<class...> class Variant = @\exposid{variant-or-empty}@>
requires @\libconcept{sender_in}@<Sndr, Env>
requires @\libconcept{sender_in}@<Sndr, Env>
using value_types_of_t = @\seebelow@;

template<class Sndr, class Env = env<>,
template<class...> class Variant = @\exposid{variant-or-empty}@>
requires @\libconcept{sender_in}@<Sndr, Env>
requires @\libconcept{sender_in}@<Sndr, Env>
using error_types_of_t = @\seebelow@;

template<class Sndr, class Env = env<>>
requires @\libconcept{sender_in}@<Sndr, Env>
requires @\libconcept{sender_in}@<Sndr, Env>
constexpr bool sends_stopped = @\seebelow@;

template<class Sndr, class... Env>
Expand All @@ -598,7 +598,7 @@
consteval auto get_completion_signatures() -> @\exposconcept{valid-completion-signatures}@ auto;

template<class Sndr, class... Env>
requires @\libconcept{sender_in}@<Sndr, Env...>
requires @\libconcept{sender_in}@<Sndr, Env...>
using completion_signatures_of_t = decltype(get_completion_signatures<Sndr, Env...>());

// \ref{exec.connect}, the connect sender algorithm
Expand Down
Loading