nlohmann::adl_serializer::from_json

convert a JSON value to any value type

Synopsis

Declared in <nlohmann/adl_serializer.hpp>
template<
    typename BasicJsonType,
    typename TargetType = ValueType>
static
decltype(::nlohmann::from_json(std::forward<BasicJsonType>(j), val), void())
from_json(
    BasicJsonType&& j,
    TargetType& val) noexcept(noexcept(::nlohmann::from_json(std::forward<BasicJsonType>(j), val)));


Created with MrDocs