$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Oliver Kowalke (oliver.kowalke_at_[hidden])
Date: 2022-12-08 16:48:30
Am 06.12.22 um 09:48 schrieb Rainer Deyke via Boost:
>
>
> At a first glance, the following libraries would have to justify their
> continued existence as "core" Boost libraries:
>
>
> Â Coroutine 2 (superseded by C++20 coroutines)
Coroutines from boost.coroutine2 are stackful != 'stackless' Coroutines
from C++20
Stackful coroutines can suspend their execution within a deep callstack
of ordinary functions while this is not permitted with C++20 coroutines.
A C++20 coroutine requires that all invoked functions return or marked
as C++20 coroutines too.