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 develop branch. The current version is 1.90.0.
Request
the inline_or_executor to invoke the
given function object.
template< typename Function> constraint_t< traits::execute_member< const Executor &, Function >::is_valid, void > execute( Function && f) const;
This function is used to ask the inline_or_executor to execute
the given function object. The function object will be executed inline
or according to the properties of the underlying executor.
The function object to be called. The executor will make a copy of the handler object as required. The function signature of the function object must be:
void function();