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
Copy constructor.
array(arrayconst& other,storage_ptrsp);
The array is constructed with a copy of the contents of other, using the specified memory resource.
Linear in other.size().
Strong guarantee. Calls to memory_resource::allocate
may throw.
|
Name |
Description |
|---|---|
|
|
The array to copy |
|
|
A pointer to the |