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 a8a4da0b3c.
PrevUpHomeNext
array::array (8 of 11 overloads)

Pilfer constructor.

Synopsis
array(
    pilfered< array > other);
Description

The array is constructed by acquiring ownership of the contents of other using pilfer semantics. This is more efficient than move construction, when it is known that the moved-from object will be immediately destroyed afterwards.

Complexity

Constant.

Exception Safety

No-throw guarantee.

Parameters

Name

Description

other

The value to pilfer. After pilfer construction, other is not in a usable state and may only be destroyed.

See Also

pilfer, Valueless Variants Considered Harmful


PrevUpHomeNext