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

@ -804,4 +804,6 @@ namespace fs
}
file make_gather(std::vector<file>);
stx::generator<dir_entry&> list_dir_recursively(std::string path);
}