SIRIUS 7.5.0
Electronic structure library and applications
|
namespace for Niels Lohmann More...
#include <nlohmann_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 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... | |
namespace for Niels Lohmann
default JSONSerializer template argument
This serializer ignores the template arguments and uses ADL (argument-dependent lookup) for serialization.
Definition at line 5765 of file nlohmann_json.hpp.
|
inlinestaticnoexcept |
convert a JSON value to any value type
Definition at line 5770 of file nlohmann_json.hpp.
|
inlinestaticnoexcept |
convert a JSON value to any value type
Definition at line 5780 of file nlohmann_json.hpp.
|
inlinestaticnoexcept |
convert any value type to a JSON value
Definition at line 5790 of file nlohmann_json.hpp.