All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Static Public Member Functions | List of all members
nlohmann::adl_serializer< T, SFINAE > Struct Template Reference

default JSONSerializer template argument More...

#include <json.hpp>

Static Public Member Functions

template<typename BasicJsonType , typename ValueType >
static auto from_json (BasicJsonType &&j, ValueType &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 More...
 
template<typename BasicJsonType , typename ValueType >
static auto to_json (BasicJsonType &j, ValueType &&val) noexcept(noexcept(::nlohmann::to_json(j, std::forward< ValueType >(val)))) -> decltype(::nlohmann::to_json(j, std::forward< ValueType >(val)), void())
 convert any value type to a JSON value More...
 

Detailed Description

template<typename T = void, typename SFINAE = void>
struct nlohmann::adl_serializer< T, SFINAE >

default JSONSerializer template argument

This serializer ignores the template arguments and uses ADL (argument-dependent lookup) for serialization.

Definition at line 2409 of file json.hpp.

Member Function Documentation

template<typename T = void, typename SFINAE = void>
template<typename BasicJsonType , typename ValueType >
static auto nlohmann::adl_serializer< T, SFINAE >::from_json ( BasicJsonType &&  j,
ValueType &  val 
) -> decltype(::nlohmann::from_json(std::forward<BasicJsonType>(j), val), void())
inlinestaticnoexcept

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]jJSON value to read from
[in,out]valvalue to write to

Definition at line 3810 of file json.hpp.

3813  {
3814  ::nlohmann::from_json(std::forward<BasicJsonType>(j), val);
3815  }
void from_json(const BasicJsonType &j, typename std::nullptr_t &n)
Definition: json.hpp:2898
template<typename T = void, typename SFINAE = void>
template<typename BasicJsonType , typename ValueType >
static auto nlohmann::adl_serializer< T, SFINAE >::to_json ( BasicJsonType &  j,
ValueType &&  val 
) -> decltype(::nlohmann::to_json(j, std::forward<ValueType>(val)), void())
inlinestaticnoexcept

convert any value type to a JSON value

This function is usually called by the constructors of the basic_json class.

Parameters
[in,out]jJSON value to write to
[in]valvalue to read from

Definition at line 3827 of file json.hpp.

3830  {
3831  ::nlohmann::to_json(j, std::forward<ValueType>(val));
3832  }
void to_json(BasicJsonType &j, T b) noexcept
Definition: json.hpp:3647

The documentation for this struct was generated from the following file: