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 version of Boost is under active development. You are currently in the master branch. The current version is 1.89.0.
Inherited from execution::any_executor.
Obtain a polymorphic wrapper with the specified property.
template< typename Property> any_executor require( Property ) const;
Do not call this function directly. It is intended for use with the
require
and prefer
customisation points.
For example:
execution::any_executor<execution::blocking_t::possibly_t> ex = ...; auto ex2 = boost::asio::require(ex, execution::blocking.possibly);