template<typename = void, typename = void>
struct nlohmann::adl_serializer< typename, typename >
default JSONSerializer template argument
This serializer ignores the template arguments and uses ADL (argument-dependent lookup) for serialization.
Definition at line 911 of file json.hpp.
|
template<typename BasicJsonType , typename ValueType > |
static void | from_json (BasicJsonType &&j, ValueType &val) noexcept(noexcept(::nlohmann::from_json(std::forward< BasicJsonType >(j), val))) |
| convert a JSON value to any value type More...
|
|
template<typename BasicJsonType , typename ValueType > |
static void | to_json (BasicJsonType &j, ValueType &&val) noexcept(noexcept(::nlohmann::to_json(j, std::forward< ValueType >(val)))) |
| convert any value type to a JSON value More...
|
|
template<typename = void, typename = void>
template<typename BasicJsonType , typename ValueType >
convert a JSON value to any value type
This function is usually called by the get()
function of the basic_json class (either explicit or via conversion operators).
- Parameters
-
[in] | j | JSON value to read from |
[in,out] | val | value to write to |
Definition at line 923 of file json.hpp.
template<typename = void, typename = void>
template<typename BasicJsonType , typename ValueType >
convert any value type to a JSON value
This function is usually called by the constructors of the basic_json class.
- Parameters
-
[in,out] | j | JSON value to write to |
[in] | val | value to read from |
Definition at line 939 of file json.hpp.