RFoe / coasync

Asynchronous network library that supports coroutines in C++20
https://github.com/RFoe/coasync
MIT License
18 stars 3 forks source link

给sleep_for添加简便写法 #14

Open RFoe opened 2 weeks ago

RFoe commented 2 weeks ago

https://github.com/RFoe/coasync/blob/3eb2a5f2e7ac97123526e1e74f73ab0f0c000bb1/include/coasync/functional.hpp#L8

类似这样

co_await 3s;
// equals to 'co_await sleep_for(std::chrono::seconds(3))'