convert any value type to a JSON value
Synopsis
Declared in <nlohmann/adl_serializer.hpp>
template<
    typename BasicJsonType,
    typename TargetType = ValueType>
static
decltype(::nlohmann::to_json(j, std::forward<TargetType>(val)), void())
to_json(
    BasicJsonType& j,
    TargetType&& val) noexcept(noexcept(::nlohmann::to_json(j, std::forward<TargetType>(val))));Created with MrDocs