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 an older version of Boost and was released in 2022. The current version is 1.90.0.
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...