Loading [MathJax]/jax/input/TeX/config.js
Iros
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages Concepts
Loading...
Searching...
No Matches
enable_sender.h
Go to the documentation of this file.
1#pragma once
2
6
7namespace di::execution {
8template<typename S>
9constexpr inline bool enable_sender = requires { typename S::is_sender; };
10
11template<concepts::IsAwaitable<EnvPromise<types::EmptyEnv>> S>
12constexpr inline bool enable_sender<S> = true;
13}
Definition bulk.h:30
constexpr bool enable_sender
Definition enable_sender.h:9