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

inline_or_executor::inline_or_executor
PrevUpHomeNext

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