|
struct | nlohmann::adl_serializer< typename, typename > |
| default JSONSerializer template argument More...
|
|
class | nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer > |
| a class to store JSON values More...
|
|
struct | nlohmann::detail::conjunction<... > |
|
struct | nlohmann::detail::conjunction< B1 > |
|
struct | nlohmann::detail::conjunction< B1, Bn... > |
|
struct | nlohmann::detail::external_constructor< value_t::array > |
|
struct | nlohmann::detail::external_constructor< value_t::boolean > |
|
struct | nlohmann::detail::external_constructor< value_t::number_float > |
|
struct | nlohmann::detail::external_constructor< value_t::number_integer > |
|
struct | nlohmann::detail::external_constructor< value_t::number_unsigned > |
|
struct | nlohmann::detail::external_constructor< value_t::object > |
|
struct | nlohmann::detail::external_constructor< value_t::string > |
|
struct | nlohmann::detail::from_json_fn |
|
struct | nlohmann::detail::has_from_json< BasicJsonType, T > |
|
struct | nlohmann::detail::has_non_default_from_json< BasicJsonType, T > |
|
struct | nlohmann::detail::has_to_json< BasicJsonType, T > |
|
struct | std::hash< nlohmann::json > |
| hash value for JSON objects More...
|
|
struct | nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer >::internal_iterator |
| an iterator value More...
|
|
struct | nlohmann::detail::is_basic_json_nested_type< BasicJsonType, T > |
|
struct | nlohmann::detail::is_compatible_array_type< BasicJsonType, CompatibleArrayType > |
|
struct | nlohmann::detail::is_compatible_integer_type< RealIntegerType, CompatibleNumberIntegerType > |
|
struct | nlohmann::detail::is_compatible_integer_type_impl< bool, typename, typename > |
|
struct | nlohmann::detail::is_compatible_integer_type_impl< true, RealIntegerType, CompatibleNumberIntegerType > |
|
struct | nlohmann::detail::is_compatible_object_type< BasicJsonType, CompatibleObjectType > |
|
struct | nlohmann::detail::is_compatible_object_type_impl< B, RealType, CompatibleObjectType > |
|
struct | nlohmann::detail::is_compatible_object_type_impl< true, RealType, CompatibleObjectType > |
|
class | nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer >::iter_impl< U > |
| a template for a random access iterator for the basic_json class More...
|
|
class | nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer >::iteration_proxy< IteratorType > |
| proxy class for the iterator_wrapper functions More...
|
|
class | nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer >::iteration_proxy< IteratorType >::iteration_proxy_internal |
| helper class for iteration More...
|
|
class | nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer >::json_pointer |
| JSON Pointer. More...
|
|
class | nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer >::json_reverse_iterator< Base > |
| a template for a reverse iterator class More...
|
|
union | nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer >::json_value |
| a JSON value More...
|
|
class | nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer >::lexer |
| lexical analysis More...
|
|
struct | nlohmann::detail::negation< B > |
|
struct | nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer >::numtostr |
| locale-independent serialization for built-in arithmetic types More...
|
|
class | nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer >::parser |
| syntax analysis More...
|
|
class | nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer >::primitive_iterator_t |
| an iterator for primitive JSON types More...
|
|
struct | nlohmann::detail::priority_tag< N > |
|
struct | nlohmann::detail::priority_tag< 0 > |
|
struct | nlohmann::detail::static_const< T > |
|
struct | nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer >::lexer::strtonum |
| parse string into a built-in arithmetic type as if the current locale is POSIX. More...
|
|
struct | nlohmann::detail::to_json_fn |
|
|
template<typename BasicJsonType , typename ArithmeticType , enable_if_t< std::is_arithmetic< ArithmeticType >::value and not std::is_same< ArithmeticType, typename BasicJsonType::number_unsigned_t >::value and not std::is_same< ArithmeticType, typename BasicJsonType::number_integer_t >::value and not std::is_same< ArithmeticType, typename BasicJsonType::number_float_t >::value and not std::is_same< ArithmeticType, typename BasicJsonType::boolean_t >::value, int > = 0> |
void | nlohmann::detail::from_json (const BasicJsonType &j, ArithmeticType &val) |
|
template<typename BasicJsonType , typename CompatibleArrayType , enable_if_t< is_compatible_array_type< BasicJsonType, CompatibleArrayType >::value and not std::is_same< typename BasicJsonType::array_t, CompatibleArrayType >::value, int > = 0> |
void | nlohmann::detail::from_json (const BasicJsonType &j, CompatibleArrayType &arr) |
|
template<typename BasicJsonType , typename CompatibleObjectType , enable_if_t< is_compatible_object_type< BasicJsonType, CompatibleObjectType >::value, int > = 0> |
void | nlohmann::detail::from_json (const BasicJsonType &j, CompatibleObjectType &obj) |
|
template<typename BasicJsonType , typename T , typename Allocator > |
void | nlohmann::detail::from_json (const BasicJsonType &j, std::forward_list< T, Allocator > &l) |
|
template<typename BasicJsonType > |
void | nlohmann::detail::from_json (const BasicJsonType &j, typename BasicJsonType::array_t &arr) |
|
template<typename BasicJsonType > |
void | nlohmann::detail::from_json (const BasicJsonType &j, typename BasicJsonType::boolean_t &b) |
|
template<typename BasicJsonType > |
void | nlohmann::detail::from_json (const BasicJsonType &j, typename BasicJsonType::number_float_t &val) |
|
template<typename BasicJsonType > |
void | nlohmann::detail::from_json (const BasicJsonType &j, typename BasicJsonType::number_integer_t &val) |
|
template<typename BasicJsonType > |
void | nlohmann::detail::from_json (const BasicJsonType &j, typename BasicJsonType::number_unsigned_t &val) |
|
template<typename BasicJsonType > |
void | nlohmann::detail::from_json (const BasicJsonType &j, typename BasicJsonType::string_t &s) |
|
template<typename BasicJsonType , typename UnscopedEnumType , enable_if_t< is_unscoped_enum< UnscopedEnumType >::value, int > = 0> |
void | nlohmann::detail::from_json (const BasicJsonType &j, UnscopedEnumType &e) |
|
template<typename BasicJsonType , typename CompatibleArrayType > |
void | nlohmann::detail::from_json_array_impl (const BasicJsonType &j, CompatibleArrayType &arr, priority_tag< 0 >) |
|
template<typename BasicJsonType , typename CompatibleArrayType > |
auto | nlohmann::detail::from_json_array_impl (const BasicJsonType &j, CompatibleArrayType &arr, priority_tag< 1 >) -> decltype(arr.reserve(std::declval< typename CompatibleArrayType::size_type >()), void()) |
|
template<typename BasicJsonType , typename ArithmeticType , enable_if_t< std::is_arithmetic< ArithmeticType >::value and not std::is_same< ArithmeticType, typename BasicJsonType::boolean_t >::value, int > = 0> |
void | nlohmann::detail::get_arithmetic_value (const BasicJsonType &j, ArithmeticType &val) |
|
| nlohmann::detail::NLOHMANN_JSON_HAS_HELPER (iterator) |
|
| nlohmann::detail::NLOHMANN_JSON_HAS_HELPER (key_type) |
|
| nlohmann::detail::NLOHMANN_JSON_HAS_HELPER (mapped_type) |
|
| nlohmann::detail::NLOHMANN_JSON_HAS_HELPER (value_type) |
|
nlohmann::json | operator""_json (const char *s, std::size_t n) |
| user-defined string literal for JSON values More...
|
|
nlohmann::json::json_pointer | operator""_json_pointer (const char *s, std::size_t n) |
| user-defined string literal for JSON pointer More...
|
|
bool | nlohmann::detail::operator< (const value_t lhs, const value_t rhs) noexcept |
| comparison operator for JSON types More...
|
|
template<> |
void | std::swap (nlohmann::json &j1, nlohmann::json &j2) noexcept(is_nothrow_move_constructible< nlohmann::json >::value and is_nothrow_move_assignable< nlohmann::json >::value) |
| exchanges the values of two JSON objects More...
|
|
template<typename BasicJsonType , typename CompatibleNumberIntegerType , enable_if_t< is_compatible_integer_type< typename BasicJsonType::number_integer_t, CompatibleNumberIntegerType >::value, int > = 0> |
void | nlohmann::detail::to_json (BasicJsonType &j, CompatibleNumberIntegerType val) noexcept |
|
template<typename BasicJsonType , typename CompatibleNumberUnsignedType , enable_if_t< is_compatible_integer_type< typename BasicJsonType::number_unsigned_t, CompatibleNumberUnsignedType >::value, int > = 0> |
void | nlohmann::detail::to_json (BasicJsonType &j, CompatibleNumberUnsignedType val) noexcept |
|
template<typename BasicJsonType , typename CompatibleArrayType , enable_if_t< is_compatible_array_type< BasicJsonType, CompatibleArrayType >::value or std::is_same< typename BasicJsonType::array_t, CompatibleArrayType >::value, int > = 0> |
void | nlohmann::detail::to_json (BasicJsonType &j, const CompatibleArrayType &arr) |
|
template<typename BasicJsonType , typename CompatibleObjectType , enable_if_t< is_compatible_object_type< BasicJsonType, CompatibleObjectType >::value, int > = 0> |
void | nlohmann::detail::to_json (BasicJsonType &j, const CompatibleObjectType &arr) |
|
template<typename BasicJsonType , typename CompatibleString , enable_if_t< std::is_constructible< typename BasicJsonType::string_t, CompatibleString >::value, int > = 0> |
void | nlohmann::detail::to_json (BasicJsonType &j, const CompatibleString &s) |
|
template<typename BasicJsonType , typename FloatType , enable_if_t< std::is_floating_point< FloatType >::value, int > = 0> |
void | nlohmann::detail::to_json (BasicJsonType &j, FloatType val) noexcept |
|
template<typename BasicJsonType , typename T , enable_if_t< std::is_same< T, typename BasicJsonType::boolean_t >::value, int > = 0> |
void | nlohmann::detail::to_json (BasicJsonType &j, T b) noexcept |
|
template<typename BasicJsonType , typename UnscopedEnumType , enable_if_t< is_unscoped_enum< UnscopedEnumType >::value, int > = 0> |
void | nlohmann::detail::to_json (BasicJsonType &j, UnscopedEnumType e) noexcept |
|