JSON for Modern C++ 2.1.1
Loading...
Searching...
No Matches

◆ operator value_t()

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 = std::int64_t, class NumberUnsignedType = std::uint64_t, class NumberFloatType = double, template< typename U > class AllocatorType = std::allocator, template< typename T, typename SFINAE=void > class JSONSerializer = adl_serializer>
constexpr nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer >::operator value_t ( ) const
inlineconstexprnoexcept

Implicitly return the type of the JSON value as a value from the value_t enumeration.

Returns
the type of the JSON value
Complexity\n Constant.
Exception safety\n No-throw guarantee: this member function never throws
exceptions.
Example\n The following code exemplifies the @ref value_t operator for
all JSON types.
1#include <json.hpp>
2
3using json = nlohmann::json;
4
5int main()
6{
7 // create JSON values
9 json j_boolean = true;
11 json j_number_float = 23.42;
12 json j_object = {{"one", 1}, {"two", 2}};
13 json j_array = {1, 2, 4, 8, 16};
14 json j_string = "Hello, world";
15
16 // call operator value_t()
24
25 // print types
26 std::cout << std::boolalpha;
27 std::cout << (t_null == json::value_t::null) << '\n';
28 std::cout << (t_boolean == json::value_t::boolean) << '\n';
29 std::cout << (t_number_integer == json::value_t::number_integer) << '\n';
30 std::cout << (t_number_float == json::value_t::number_float) << '\n';
31 std::cout << (t_object == json::value_t::object) << '\n';
32 std::cout << (t_array == json::value_t::array) << '\n';
33 std::cout << (t_string == json::value_t::string) << '\n';
34}
static basic_json array(std::initializer_list< basic_json > init=std::initializer_list< basic_json >())
explicitly create an array from an initializer list
Definition json.hpp:2165
static basic_json object(std::initializer_list< basic_json > init=std::initializer_list< basic_json >())
explicitly create an object from an initializer list
Definition json.hpp:2205
detail::value_t value_t
Definition json.hpp:1049
a class to store JSON values
Definition json.hpp:1040
basic_json<> json
default JSON class
Definition json.hpp:12369

Output (play with this example online):
true
true
true
true
true
true
true

The example code above can be translated with
g++ -std=c++11 -Isrc doc/examples/operator__value_t.cpp -o operator__value_t 
Since
version 1.0.0

Definition at line 3013 of file json.hpp.