mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 17:01:24 +12:00
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:
parent
d6420b8803
commit
6b40d69a8f
4 changed files with 409 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue