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

Method from_json

Source/external/json.hpp:5766–5771  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5764 /// @sa https://json.nlohmann.me/api/adl_serializer/from_json/
5765 template<typename BasicJsonType, typename TargetType = ValueType>
5766 static auto from_json(BasicJsonType && j, TargetType& val) noexcept(
5767 noexcept(::nlohmann::from_json(std::forward<BasicJsonType>(j), val)))
5768 -> decltype(::nlohmann::from_json(std::forward<BasicJsonType>(j), val), void())
5769 {
5770 ::nlohmann::from_json(std::forward<BasicJsonType>(j), val);
5771 }
5772
5773 /// @brief convert a JSON value to any value type
5774 /// @sa https://json.nlohmann.me/api/adl_serializer/from_json/

Callers

nothing calls this directly

Calls 1

from_jsonFunction · 0.85

Tested by

no test coverage detected