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 is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

executor::operator=

Assignment operator.

executor & operator=(
    const executor & other);
  » more...



executor & operator=(
    executor && other);
  » more...

Assignment operator for nullptr_t.

executor & operator=(
    nullptr_t );
  » more...

Assignment operator to create a polymorphic wrapper for the specified executor.

template<
    typename Executor>
executor & operator=(
    Executor && e);
  » more...

PrevUpHomeNext