kokkos-execution 0.0.1
Loading...
Searching...
No Matches
Tests::Utils::has_nothrow_apply_sender Concept Reference

Check that apply_sender is noexcept. More...

#include <stdexec.hpp>

Concept definition

template<typename DomainOrTag, typename... Args>
concept Tests::Utils::has_nothrow_apply_sender = requires(DomainOrTag domain_or_tag, Args&&... args) {
{ domain_or_tag.apply_sender(std::forward<Args>(args)...) } noexcept;
}
Check that apply_sender is noexcept.
Definition stdexec.hpp:49

Detailed Description