Template
|
adl_serializer< ValueType, typename > Struct Template Reference
namespace for Niels Lohmann More...
#include <json.hpp>
Static Public Member Functions | |
template<typename BasicJsonType , typename TargetType = ValueType> | |
static auto | from_json (BasicJsonType &&j, TargetType &val) noexcept(noexcept(::nlohmann::from_json(std::forward< BasicJsonType >(j), val))) -> decltype(::nlohmann::from_json(std::forward< BasicJsonType >(j), val), void()) |
convert a JSON value to any value type | |
template<typename BasicJsonType , typename TargetType = ValueType> | |
static auto | from_json (BasicJsonType &&j) noexcept(noexcept(::nlohmann::from_json(std::forward< BasicJsonType >(j), detail::identity_tag< TargetType > {}))) -> decltype(::nlohmann::from_json(std::forward< BasicJsonType >(j), detail::identity_tag< TargetType > {})) |
convert a JSON value to any value type | |
template<typename BasicJsonType , typename TargetType = ValueType> | |
static auto | to_json (BasicJsonType &j, TargetType &&val) noexcept(noexcept(::nlohmann::to_json(j, std::forward< TargetType >(val)))) -> decltype(::nlohmann::to_json(j, std::forward< TargetType >(val)), void()) |
convert any value type to a JSON value | |
Detailed Description
template<typename ValueType, typename>
struct adl_serializer< ValueType, typename >
struct adl_serializer< ValueType, typename >
namespace for Niels Lohmann
- See also
- https://github.com/nlohmann
- Since
- version 1.0.0
default JSONSerializer template argument
This serializer ignores the template arguments and uses ADL (argument-dependent lookup) for serialization.
Member Function Documentation
◆ from_json() [1/2]
template<typename ValueType , typename >
template<typename BasicJsonType , typename TargetType = ValueType>
|
inlinestaticnoexcept |
convert a JSON value to any value type
◆ from_json() [2/2]
template<typename ValueType , typename >
template<typename BasicJsonType , typename TargetType = ValueType>
|
inlinestaticnoexcept |
convert a JSON value to any value type
◆ to_json()
template<typename ValueType , typename >
template<typename BasicJsonType , typename TargetType = ValueType>
|
inlinestaticnoexcept |
convert any value type to a JSON value
The documentation for this struct was generated from the following file:
- include/nlohmann/json.hpp
Generated by 1.9.8