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

PrevUpHomeNext
value::value (31 of 35 overloads)

Construct an object.

Synopsis
value(
    object other);
Description

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

Example
object obj( {{ "a" ,1}, { "b" ,2}, { "c" },3}} );

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

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

Constant.

Exception Safety

No-throw guarantee.

Parameters

Name

Description

other

The object to construct with.


PrevUpHomeNext