Instrument Neutral Distributed Interface INDI  2.0.2
Static Public Member Functions | List of all members
nlohmann::adl_serializer< ValueType, typename > Struct Template Reference

default JSONSerializer template argument More...

#include <json.h>

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 More...
 
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 More...
 
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 More...
 

Detailed Description

template<typename ValueType, typename>
struct nlohmann::adl_serializer< ValueType, typename >

default JSONSerializer template argument

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

See also
https://json.nlohmann.me/api/adl_serializer/

Definition at line 5446 of file json.h.

Member Function Documentation

◆ from_json() [1/2]

template<typename ValueType , typename >
template<typename BasicJsonType , typename TargetType = ValueType>
static auto nlohmann::adl_serializer< ValueType, typename >::from_json ( BasicJsonType &&  j) -> decltype(::nlohmann::from_json(std::forward<BasicJsonType>(j), detail::identity_tag<TargetType> {}))
inlinestaticnoexcept

convert a JSON value to any value type

See also
https://json.nlohmann.me/api/adl_serializer/from_json/

Definition at line 5461 of file json.h.

◆ from_json() [2/2]

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

convert a JSON value to any value type

See also
https://json.nlohmann.me/api/adl_serializer/from_json/

Definition at line 5451 of file json.h.

◆ to_json()

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

convert any value type to a JSON value

See also
https://json.nlohmann.me/api/adl_serializer/to_json/

Definition at line 5471 of file json.h.


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