Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
immediate_executor_binder::immediate_executor_binder (4 of 9 overloads)

Construct a copy of a different immediate executor wrapper type.

template<
    typename U,
    typename OtherExecutor>
immediate_executor_binder(
    const immediate_executor_binder< U, OtherExecutor > & other,
    constraint_t< is_constructible< Executor, OtherExecutor >::value >  = 0,
    constraint_t< is_constructible< T, U >::value >  = 0);

This constructor is only valid if the Executor type is constructible from type OtherExecutor, and the type T is constructible from type U.


PrevUpHomeNext