//// Copyright (c) 2019 Vinnie Falco (vinnie.falco@gmail.com) Copyright (c) 2025 Dmitry Arkhipov (grisumbras@yandex.ru) Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) Official repository: https://github.com/boostorg/json //// [#dom_value] = `value` JSON documents are represented in memory as instances of <>: a {req_Regular} type which satisfies {req_DefaultConstructible}, {req_CopyConstructible}, {req_CopyAssignable}, {req_MoveConstructible}, {req_MoveAssignable}, and many of the requirements of allocator-aware containers. It is implemented as a https://en.wikipedia.org/wiki/Tagged_union[__variant__] internally, and can dynamically store any of the six defined JSON value types: * **null**: A https://en.cppreference.com/w/cpp/utility/variant/monostate[__monostate__] value, equivalent to `nullptr`. * **boolean**: A boolean: either `true` or `false`. * **number**: An integral or floating point value. * **string**: A sequence of zero or more Unicode characters, similar to {std_string}. * **array**: An ordered list of values, like {std_vector}. * **object**: A collection of name/value pairs, also known as an https://en.wikipedia.org/wiki/Associative_array[__associative array__]. == Working With Values A <> constructed from `nullptr` or default constructed represents a null JSON element: [source] ---- include::../../../test/snippets.cpp[tag=snippet_value_1,indent=0] ---- The member function <> may be used to query the kind stored in the value. Alternatively, member functions like <> <> may be used to check whether or not the value is a particular kind: [source] ---- include::../../../test/snippets.cpp[tag=snippet_value_2,indent=0] ---- Functions like <> actually return a pointer to the object if the value is an object, otherwise they return null. This allows them to be used both in boolean contexts as above, and in assignments or conditional expressions to capture the value of the pointer: [source] ---- include::../../../test/snippets.cpp[tag=snippet_value_3,indent=0] ---- After a <> is constructed, its kind can change depending on what is assigned to it, or by calling functions such as <> or <>. If the assignment is successful, in other words it completes without any exceptions then the value is replaced. Otherwise, the value is unchanged. All operations which can fail to modify a value offer the strong exception safety guarantee. [source] ---- include::../../../test/snippets.cpp[tag=snippet_value_4,indent=0] ---- The following table shows all of the ways to determine and access the contents of a <>: .<> Accessors [%autowidth,cols=8] |=== |Kind |Representation |Emplacement |Kind Test |Pointer Access |`result` Access |Checked Access |Unchecked Access |<> |<> |<> |<> |<> |<> |<> |<> |<> |<> |<> |<> |<> |<> |<> |<> |<> |<> |<> |<> |<> |<> |<> |<> |<> |https://en.cppreference.com/w/cpp/types/integer[`std::int64_t`] |<> |<> |<> |<> |<> |<> |<> |https://en.cppreference.com/w/cpp/types/integer[`std::uint64_t`] |<> |<> |<> |<> |<> |<> |<> |https://en.cppreference.com/w/cpp/language/types[`double`] |<> |<> |<> |<> |<> |<> |<> |https://en.cppreference.com/w/cpp/language/types[`bool`] |<> |<> |<> |<> |<> |<> |<> |https://en.cppreference.com/w/cpp/language/nullptr[`std::nullptr_t`] |<> |<> ^|— |<> ^|— ^|— |=== The emplace members of <> return a typed reference to the underlying representation. For example, the call to <> in the previous example returns a <>. This table shows the underlying type for each kind: |=== |Kind|Type|Description | <> | <> | An associative array of string keys mapping to <> elements with an interface similar to {std_unordered_map}, that remembers insertion order. | <> | <> | An ordered list of <> elements with an interface similar to {std_vector}. | <> | <> | A https://en.wikipedia.org/wiki/UTF-8[__UTF-8__] encoded https://en.wikipedia.org/wiki/Unicode[Unicode] https://en.wikipedia.org/wiki/String_(computer_science)[string] of characters with an interface similar to {std_string}. | <> | `std::int64_t` | A 64 bit signed integer. | <> | `std::uint64_t` | A 64 bit unsigned integer. | <> | `double` | A `double` holding a floating-point value. | <> | https://en.cppreference.com/w/cpp/keyword/bool[`bool`] | A `bool` holding `true` or `false`. | <> ^| — | A monostate value representing null. |=== The return value from emplace can be used to perform assignment or to capture a reference to the underlying element for later inspection or modification: [source] ---- include::../../../test/snippets.cpp[tag=snippet_value_5,indent=0] ---- If the <> of a <> is known, functions such as <> or <> may be used to obtain a reference to the underlying representation without changing the existing value: [source] ---- include::../../../test/snippets.cpp[tag=snippet_value_6,indent=0] ---- However, as shown above these functions throw an exception if the kind in the <> does not match the kind denoted by the function signature. This can be used as a concise form of validation: access values as if they were the right type, but handle the resulting exception indicating if the schema of the JSON is not valid. We can query a value for its underlying representation of a particular kind in a way that does not throw exceptions by requesting a pointer which may be null, instead of a reference. Here we use <> to conditionally perform an assignment without using exceptions: [source] ---- include::../../../test/snippets.cpp[tag=snippet_value_7,indent=0] ---- [TIP] ==== If the value's kind is known statically, a reference to the underlying representation may be obtained by dereferencing the pointer without checking. This avoids the code overhead of the possible exception when using, for example <>: [source] ---- include::../../../test/snippets.cpp[tag=snippet_value_8,indent=0] ---- ==== Functions returning {ref_result} allow you to use both approaches: [source] ---- include::../../../test/snippets.cpp[tag=snippet_value_9,indent=0] ---- === Formatted Output When a <> is formatted to a {std_ostream}, the result is serialized JSON as if by calling <>.