HikoGUI
Select Version:
⚠️ This documents the main development branch of HikoGUI. It might differ from release versions.
A low latency retained GUI
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
v1::awaitable_with_co_await_member Concept Reference

Concept definition

template<typename T>
concept v1::awaitable_with_co_await_member = requires(std::remove_reference_t<T>& a) {
{ a.operator co_await() } -> awaitable;
}
Check if type can be directly co_await on.
Definition awaitable.hpp:22
Definition awaitable.hpp:31