Container System 0.1.0
High-performance C++20 type-safe container framework with SIMD-accelerated serialization
Loading...
Searching...
No Matches
async.h File Reference

Main header for C++20 coroutine async support. More...

Go to the source code of this file.

Namespaces

namespace  kcenon
 
namespace  kcenon::container
 
namespace  kcenon::container::async
 

Macros

#define CONTAINER_HAS_COROUTINES   0
 

Variables

constexpr bool kcenon::container::async::has_coroutine_support = false
 Check if coroutines are available at compile time.
 

Detailed Description

Main header for C++20 coroutine async support.

Include this header to use async features:

using namespace kcenon::container::async;
task<int> compute() {
co_return 42;
}
Main header for C++20 coroutine async support.
Forward declaration of task.
Definition task.h:209
See also
kcenon::container::async::task
kcenon::container::async::generator

Definition in file async.h.

Macro Definition Documentation

◆ CONTAINER_HAS_COROUTINES

#define CONTAINER_HAS_COROUTINES   0

Definition at line 33 of file async.h.