JSON for Modern C++  1.1.0
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>
template<typename T , typename std::enable_if< not(std::is_same< T, int >::value) and std::is_same< T, number_integer_t >::value , int >::type = 0>
nlohmann::basic_json::basic_json ( const number_integer_t  val)
inline

Create an integer number JSON value with a given content.

Template Parameters
Thelper type to compare number_integer_t and int (not visible in) the interface.
Parameters
[in]valan integer to create a JSON number from
Note
This constructor would have the same signature as basic_json(const int value), so we need to switch this one off in case number_integer_t is the same as int. This is done via the helper type T.
Complexity
Constant.
Example
The example below shows the construction of a JSON integer number value.
1 #include <json.hpp>
2 
3 using namespace nlohmann;
4 
5 int main()
6 {
7  // create a JSON number from number_integer_t
8  json::number_integer_t value = 42;
9 
10  json j(value);
11 
12  // serialize the JSON numbers
13  std::cout << j << '\n';
14 }
a class to store JSON values
Definition: json.hpp:191
namespace for Niels Lohmann
Definition: json.hpp:88
NumberIntegerType number_integer_t
a type for a number (integer)
Definition: json.hpp:537
Output (play with this example online):
42
The example code above can be translated with
g++ -std=c++11 -Isrc doc/examples/basic_json__number_integer_t.cpp -o basic_json__number_integer_t 
See also
basic_json(const int) – create a number value (integer)
basic_json(const CompatibleNumberIntegerType) – create a number value (integer) from a compatible number type
Since
version 1.0.0

Definition at line 1175 of file json.hpp.