| 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/ |
nothing calls this directly
no test coverage detected