|
template<template< typename U, typename V, typename...Args > class ObjectType = std::map, template< typename U, typename...Args > class ArrayType = std::vector, class StringType = std::string, class BooleanType = bool, class NumberIntegerType = int64_t, class NumberFloatType = double, template< typename U > class AllocatorType = std::allocator>
Exchanges the contents of a JSON object with those of other. Does not invoke any move, copy, or swap operations on individual elements. All iterators and references remain valid. The past-the-end iterator is invalidated.
- Parameters
-
[in,out] | other | object to exchange the contents with |
- Exceptions
-
std::domain_error | when JSON value is not an object |
- Complexity
- Constant.
- Example
- The example below shows how JSON values can be swapped.
8 json value = { { "translation", {{ "one", "eins"}, { "two", "zwei"}}} };
14 value[ "translation"]. swap( object);
17 std::cout << "value = " << value << '\n';
18 std::cout << "object = " << object << '\n';
a class to store JSON values Definition: json.hpp:130
ObjectType< StringType, basic_json, std::less< StringType >, AllocatorType< std::pair< const StringType, basic_json >>> object_t a type for an object Definition: json.hpp:264
namespace for Niels Lohmann Definition: json.hpp:55
void swap(reference other) noexcept(std::is_nothrow_move_constructible< value_t >::value andstd::is_nothrow_move_assignable< value_t >::value andstd::is_nothrow_move_constructible< json_value >::value andstd::is_nothrow_move_assignable< json_value >::value) exchanges the values Definition: json.hpp:3743
Output (play with this example online): value = {"translation":{"cow":"Kuh","dog":"Hund"}}
object = {"one":"eins","two":"zwei"}
The example code above can be translated withg++ -std=c++11 -Isrc doc/examples/swap__object_t.cpp -o swap__object_t
|