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, class BinaryType = std::vector<std::uint8_t>>
constexpr nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer, BinaryType >::operator value_t |
( |
| ) |
const |
|
inlineconstexprnoexcept |
return the type of the JSON value (implicit)
Implicitly return the type of the JSON value as a value from the value_t enumeration.
- Returns
- the type of the JSON value
@complexity Constant.
@exceptionsafety No-throw guarantee: this member function never throws exceptions.
@liveexample{The following code exemplifies the value_t operator for all JSON types.,operator__value_t}
- See also
- see type() – return the type of the JSON value (explicit)
-
see type_name() – return the type as string
- Since
- version 1.0.0
Definition at line 20529 of file json.hpp.
20530 {
20531 return m_type;
20532 }