Boost C++ 库

...世界上最受尊敬和设计最精良的 C++ 库项目之一。 Herb SutterAndrei Alexandrescu, C++ 编码规范

PrevUpHomeNext

bind_executor (4 个重载中的第 4 个)

将类型为 T 的对象与执行上下文的执行器关联。

template<
    typename ExecutionContext,
    typename T>
executor_binder< decay_t< T >, typename ExecutionContext::executor_type > bind_executor(
    ExecutionContext & ctx,
    T && t,
    constraint_t< is_convertible< ExecutionContext &, execution_context & >::value >  = 0);

PrevUpHomeNext