JSON for Modern C++  2.0.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 = std::int64_t, class NumberUnsignedType = std::uint64_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_unsigned_t >::value, int >::type = 0>
nlohmann::basic_json::basic_json ( const number_unsigned_t  val)
inlinenoexcept

Create an unsigned integer number JSON value with a given content.

Template Parameters
Thelper type to compare number_unsigned_t and unsigned int (not visible in) the interface.
Parameters
[in]valan integer to create a JSON number from
Complexity
Constant.
See also
basic_json(const CompatibleNumberUnsignedType) – create a number value (unsigned integer) from a compatible number type
Since
version 2.0.0

Definition at line 1373 of file json.hpp.