...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
array() noexcept; »more...
explicit array(storage_ptr
sp) noexcept; »more...
array(std::size_t
count,value
const& v,storage_ptr
sp = {}); »more...
array(std::size_t
count,storage_ptr
sp = {}); »more...
template< class InputIt> array( InputIt first, InputIt last,storage_ptr
sp = {}); »more...
array(std::initializer_list
<value_ref
> init,storage_ptr
sp = {}); »more...
Copy constructor.
array(array
const& other); »more...
array(array
const& other,storage_ptr
sp); »more...
Pilfer constructor.
array(pilfered
<array
> other) noexcept; »more...
Move constructor.
array(array
&& other) noexcept; »more...
array(array
&& other,storage_ptr
sp); »more...