2
0
mirror of https://github.com/boostorg/asio.git synced 2026-01-27 06:32:08 +00:00
Files
asio/doc
Christopher Kohlhoff 3f12308c03 Add overloads of co_spawn that launch an awaitable.
This change allows us to write:

 co_spawn(executor,
     echo(std::move(socket)),
     detached);

instead of:

 co_spawn(executor,
     [socket = std::move(socket)]() mutable
     {
       return echo(std::move(socket));
     },
     detached);
2020-06-22 20:49:30 +10:00
..
2014-05-05 11:48:23 +10:00
2020-04-21 17:59:45 +10:00
2020-04-07 11:15:42 +10:00
2020-04-22 21:52:28 +10:00
2020-04-07 11:15:42 +10:00
2020-04-07 11:15:42 +10:00
2020-04-07 11:15:42 +10:00
2020-04-07 11:15:42 +10:00
2020-04-07 11:15:42 +10:00
2020-04-07 11:44:28 +10:00
2020-04-07 11:15:42 +10:00
2013-05-25 13:03:48 +00:00
2020-04-07 11:15:42 +10:00
2020-04-07 11:15:42 +10:00