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 an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext
key_value_pair::key_value_pair

Copy constructor.

key_value_pair(
    key_value_pair const& other);
  » more...

key_value_pair(
    key_value_pair const& other,
    storage_ptr sp);
  » more...

Move constructor.

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

Pilfer constructor.

key_value_pair(
    pilfered< key_value_pair > other);
  » more...

Constructor.

template<
    class... Args>
explicit
key_value_pair(
    string_view key,
    Args&&... args);
  » more...

explicit
key_value_pair(
    std::pair< string_view, json::value > const& p,
    storage_ptr sp = {});
  » more...

explicit
key_value_pair(
    std::pair< string_view, json::value >&& p,
    storage_ptr sp = {});
  » more...

PrevUpHomeNext