MCPcopy Create free account
hub / github.com/CalcProgrammer1/OpenRGB / from_json

Method from_json

dependencies/json/json.hpp:4449–4454  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4447 */
4448 template<typename BasicJsonType, typename ValueType>
4449 static auto from_json(BasicJsonType&& j, ValueType& val) noexcept(
4450 noexcept(::nlohmann::from_json(std::forward<BasicJsonType>(j), val)))
4451 -> decltype(::nlohmann::from_json(std::forward<BasicJsonType>(j), val), void())
4452 {
4453 ::nlohmann::from_json(std::forward<BasicJsonType>(j), val);
4454 }
4455
4456 /*!
4457 @brief convert any value type to a JSON value

Callers

nothing calls this directly

Calls 1

from_jsonFunction · 0.70

Tested by

no test coverage detected