mirror of
https://github.com/boostorg/coroutine2.git
synced 2026-02-01 08:22:18 +00:00
adapt new execution_context API
This commit is contained in:
@@ -9,26 +9,22 @@
|
||||
|
||||
#include <boost/coroutine2/all.hpp>
|
||||
|
||||
int main()
|
||||
{
|
||||
int main() {
|
||||
boost::coroutines2::coroutine< int >::pull_type source(
|
||||
[&]( boost::coroutines2::coroutine< int >::push_type & sink) {
|
||||
[]( boost::coroutines2::coroutine< int >::push_type & sink) {
|
||||
int first = 1, second = 1;
|
||||
sink( first);
|
||||
sink( second);
|
||||
for ( int i = 0; i < 8; ++i)
|
||||
{
|
||||
for ( int i = 0; i < 8; ++i) {
|
||||
int third = first + second;
|
||||
first = second;
|
||||
second = third;
|
||||
sink( third);
|
||||
}
|
||||
});
|
||||
|
||||
for ( auto i : source)
|
||||
for ( auto i : source) {
|
||||
std::cout << i << " ";
|
||||
|
||||
}
|
||||
std::cout << "\nDone" << std::endl;
|
||||
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user