Oliver Kowalke d7f09f3fa2
Merge pull request #35 from eldiener/develop
Add "cxxstd" json field. The "cxxstd" json field is being added to each Boost library's meta json information for libraries whose minumum C++ standard compilation level is C++11 on up. The value of this field matches one of the values for 'cxxstd' in Boost.Build. The purpose of doing this is to provide information for the Boost website documentation for each library which will specify the minimum C++ standard compilation that an end-user must employ in order to use the particular library. This will aid end-users who want to know if they can successfully use a Boost library based on their C++ compiler's  compilation level, without having to search the library's documentation to find this out.
2020-12-28 09:21:18 +01:00
2019-10-02 08:22:54 +02:00
2020-12-15 21:55:31 -05:00
2020-06-26 17:53:39 +02:00
2015-01-22 22:55:01 +01:00
2017-12-20 15:34:05 +01:00
2015-01-23 23:15:23 +01:00
2018-02-05 08:10:22 +01:00

boost.coroutine2

boost.coroutine2 provides templates for generalized subroutines which allow multiple entry points for suspending and resuming execution at certain locations. It preserves the local state of execution and allows re-entering subroutines more than once (useful if state must be kept across function calls).

Coroutines can be viewed as a language-level construct providing a special kind of control flow.

In contrast to threads, which are pre-emptive, coroutines switches are cooperative (programmer controls when a switch will happen). The kernel is not involved in the coroutine switches.

boost.coroutine2 requires C++11! Note that boost.coroutine2 is the successor of the deprectated boost.coroutine.

Description
Boost.Coroutine2
Readme 464 KiB
Languages
C++ 98.2%
Shell 0.9%
CMake 0.5%
HTML 0.4%