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 version of Boost is under active development. You are currently in the master branch. The current version is 1.91.0.
Move constructor.
basic_format_context(
basic_format_context&& rhs);
Move constructs an OutputString
using rhs's output string.
*this
will have the same format options and error state than rhs. rhs
is left in a valid but unspecified state.
Basic guarantee: exceptions thrown by move-constructing OutputString are propagated.