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 to view this page for the latest version.
PrevUpHomeNext

executor_arg_t

A special type, similar to std::nothrow_t, used to disambiguate constructors that accept executor arguments.

struct executor_arg_t
Member Functions

Name

Description

executor_arg_t

Constructor.

The executor_arg_t struct is an empty structure type used as a unique type to disambiguate constructor and function overloading. Specifically, some types have constructors with executor_arg_t as the first argument, immediately followed by an argument of a type that satisfies the Executor type requirements.

Requirements

Header: boost/asio/uses_executor.hpp

Convenience header: boost/asio.hpp


PrevUpHomeNext