29 Eylül 2016 Perşembe

coroutine symmetric_coroutine Sınıfı

call_type Tipi
Constructor
Şöyle yaparız.
boost::coroutines::symmetric_coroutine<int>::call_type coro (
  [&](boost::coroutines::symmetric_coroutine<int>::yield_type& yield)
  {
    ...
  }
);
operator () metodu
Şöyle yaparız.
coro (3);
yield_type Tipi
get metodu
Şöyle yaparız.
boost::coroutines::symmetric_coroutine<int>::yield_type yield = ...
std::cout << yield.get() << std::endl;
operator () metodu
Şöyle yaparız.
boost::coroutines::symmetric_coroutine<int>::yield_type& yield = ...;
yield ();


Hiç yorum yok:

Yorum Gönder