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.
Prev Up HomeNext

explicit basic_outcome(basic_outcome<A, B, C, D> &&)

Explicit converting move constructor from compatible basic_outcome. Calls void hook_outcome_move_construction(T *, U &&) noexcept with this and the input.

Requires: predicate::enable_compatible_conversion<A, B, C, D> is true.

Complexity: Same as for the move constructors of the underlying types. Constexpr, triviality and noexcept of underlying operations is propagated.

Guarantees: If an exception is thrown during the operation, the object is left in a partially completed state, as per the normal rules for the same operation on a struct.

Last revised: March 03, 2019 at 00:11:47 UTC


Prev Up HomeNext