| 242 | } |
| 243 | |
| 244 | Result<Value> jsonToValue(const std::string_view& str) { |
| 245 | return correctJsonToValue(str); |
| 246 | } |
| 247 | |
| 248 | Result<Value> jsonToValue(const Byte* data, size_t size) { |
| 249 | return jsonToValue(std::string_view(reinterpret_cast<const char*>(data), size)); |
nothing calls this directly
no test coverage detected