Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

inline_or_executor::inline_or_executor

Default constructor.

inline_or_executor();
  » more...

Construct an inline_or_executor for the specified executor.

template<
    typename Executor1>
explicit inline_or_executor(
    const Executor1 & e,
    constraint_t< conditional_t< !is_same< Executor1, inline_or_executor >::value, is_convertible< Executor1, Executor >, false_type >::value >  = 0);
  » more...

Copy constructor.

inline_or_executor(
    const inline_or_executor & other);
  » more...

Converting constructor.

template<
    class OtherExecutor>
inline_or_executor(
    const inline_or_executor< OtherExecutor > & other);
  » more...

Move constructor.

inline_or_executor(
    inline_or_executor && other);
  » more...

Converting move constructor.

template<
    class OtherExecutor>
inline_or_executor(
    inline_or_executor< OtherExecutor > && other);
  » more...

PrevUpHomeNext