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
basic_format_context::operator=

Move assignment.

Synopsis
basic_format_context&
operator=(
    basic_format_context&& rhs);
Description

Move assigns rhs's output string to *this output string. *this will have the same format options and error state than rhs. rhs is left in a valid but unspecified state.

Exception safety

Basic guarantee: exceptions thrown by move-constructing OutputString are propagated.


PrevUpHomeNext