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 c6a8213e9b.
PrevUpHomeNext
array::array

Constructor.

array();
  » more...

explicit
array(
    storage_ptr sp);
  » 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);
  » more...

Move constructor.

array(
    array&& other);
  » more...

array(
    array&& other,
    storage_ptr sp);
  » more...

PrevUpHomeNext