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

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

#include <hikogui/awaitable.hpp>

Concept definition

template<typename T>
concept v1::awaitable_member = requires(T a)
{
a.operator co_await();
}
Check if type can be indirectly co_await on.
Definition awaitable.hpp:33

Detailed Description

Check if type can be indirectly co_await on.

The type needs to implement member function operator co_await().