HikoGUI
A low latency retained GUI
Loading...
Searching...
No Matches
v1::awaitable Concept Reference

Check if type can be directly or indirectly co_await on. More...

#include <hikogui/concepts.hpp>

Concept definition

template<typename T>
Check if type can be directly co_await on.
Definition concepts.hpp:134
Check if type can be indirectly co_await on.
Definition concepts.hpp:148
Check if type can be indirectly co_await on.
Definition concepts.hpp:158
Check if type can be directly or indirectly co_await on.
Definition concepts.hpp:170

Detailed Description

Check if type can be directly or indirectly co_await on.

The type needs to have the following member functions: await_ready(), await_suspend() and await_resume(). Or implement operator co_await().