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 e83975fcee.
PrevUpHomeNext
value::value (23 of 35 overloads)

Construct a string.

Synopsis
value(
    string other);
Description

The value is constructed from other, using the same memory resource. To transfer ownership, use std::move:

Example
string str = "The Boost C++ Library Collection" ;

// transfer ownership
value jv( std::move(str) );

assert( str.empty() );
assert( *str.storage() == *jv.storage() );
Complexity

Constant.

Exception Safety

No-throw guarantee.

Parameters

Name

Description

other

The string to construct with.


PrevUpHomeNext