RFoe / coasync

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

给sleep_for添加简便写法 #14

Closed RFoe closed 1 month ago

RFoe commented 2 months 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))'