Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext

basic_yield_context::caller_type

The coroutine caller type, used by the implementation.

typedef implementation_defined caller_type;

When using Boost.Coroutine v1, this type is:

typename coroutine<void()>::caller_type

When using Boost.Coroutine v2 (unidirectional coroutines), this type is:

pull_coroutine<void>
Requirements

Header: boost/asio/spawn.hpp

Convenience header: None


PrevUpHomeNext