Introduce coroutine support (util/coro.hpp)

Implement coroutine types `lazy` and `generator` in stx namespace.
Implement fs::list_dir_recursively.
This commit is contained in:
Nekotekina 2021-11-30 17:40:46 +03:00
parent d6420b8803
commit 6b40d69a8f
4 changed files with 409 additions and 1 deletions

View file

@ -131,6 +131,12 @@ namespace stx
{
template <typename T, bool Se, usz Align>
class se_t;
template <typename T>
struct lazy;
template <typename T>
struct generator;
}
using stx::se_t;