MCPcopy Create free account
hub / github.com/Open-GD/OpenGD / to_json

Method to_json

Source/external/json.hpp:5786–5791  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5784 /// @sa https://json.nlohmann.me/api/adl_serializer/to_json/
5785 template<typename BasicJsonType, typename TargetType = ValueType>
5786 static auto to_json(BasicJsonType& j, TargetType && val) noexcept(
5787 noexcept(::nlohmann::to_json(j, std::forward<TargetType>(val))))
5788 -> decltype(::nlohmann::to_json(j, std::forward<TargetType>(val)), void())
5789 {
5790 ::nlohmann::to_json(j, std::forward<TargetType>(val));
5791 }
5792};
5793
5794NLOHMANN_JSON_NAMESPACE_END

Callers

nothing calls this directly

Calls 1

to_jsonFunction · 0.85

Tested by

no test coverage detected