mirror of
https://github.com/nlohmann/json
synced 2024-11-09 22:20:05 +00:00
29cd970b94
* 🔥 consolidate documentation * ♻️ overwork std specializations * 🚚 move images files to mkdocs * ♻️ fix URLs * 🔧 tweak MkDocs configuration * 🔧 add namespaces * 📝 document deprecations * 📝 document documentation generation * 🚸 improve search * 🚸 add examples * 🚧 start adding documentation for macros * 📝 add note for https://github.com/nlohmann/json/issues/874#issuecomment-1001699139 * 📝 overwork example handling * 📝 fix Markdown tables
49 lines
2.0 KiB
C++
49 lines
2.0 KiB
C++
#pragma once
|
|
|
|
#include <type_traits>
|
|
#include <utility>
|
|
|
|
#include <nlohmann/detail/conversions/from_json.hpp>
|
|
#include <nlohmann/detail/conversions/to_json.hpp>
|
|
#include <nlohmann/detail/meta/identity_tag.hpp>
|
|
#include <nlohmann/detail/meta/type_traits.hpp>
|
|
|
|
namespace nlohmann
|
|
{
|
|
|
|
/// @sa https://json.nlohmann.me/api/adl_serializer/
|
|
template<typename ValueType, typename>
|
|
struct adl_serializer
|
|
{
|
|
/// @brief convert a JSON value to any value type
|
|
/// @sa https://json.nlohmann.me/api/adl_serializer/from_json/
|
|
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())
|
|
{
|
|
::nlohmann::from_json(std::forward<BasicJsonType>(j), val);
|
|
}
|
|
|
|
/// @brief convert a JSON value to any value type
|
|
/// @sa https://json.nlohmann.me/api/adl_serializer/from_json/
|
|
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> {}))
|
|
{
|
|
return ::nlohmann::from_json(std::forward<BasicJsonType>(j), detail::identity_tag<TargetType> {});
|
|
}
|
|
|
|
/// @brief convert any value type to a JSON value
|
|
/// @sa https://json.nlohmann.me/api/adl_serializer/to_json/
|
|
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())
|
|
{
|
|
::nlohmann::to_json(j, std::forward<TargetType>(val));
|
|
}
|
|
};
|
|
} // namespace nlohmann
|