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 a snapshot of the master branch, built from commit c6a8213e9b.
Prev Up HomeNext

basic_outcome(const basic_outcome &)

Copy constructor.

Requires: that value_type, error_type and exception_type all implement a copy constructor.

Complexity: Same as for value_type’s, error_type’s and exception_type’s copy constructors. 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