| 23183 | /// @sa https://json.nlohmann.me/api/basic_json/parse/ |
| 23184 | template<typename InputType> |
| 23185 | JSON_HEDLEY_WARN_UNUSED_RESULT |
| 23186 | static basic_json parse(InputType&& i, |
| 23187 | const parser_callback_t cb = nullptr, |
| 23188 | const bool allow_exceptions = true, |
| 23189 | const bool ignore_comments = false) |
| 23190 | { |
| 23191 | basic_json result; |
| 23192 | parser(detail::input_adapter(std::forward<InputType>(i)), cb, allow_exceptions, ignore_comments).parse(true, result); |
| 23193 | return result; |
| 23194 | } |
| 23195 | |
| 23196 | /// @brief deserialize from a pair of character iterators |
| 23197 | /// @sa https://json.nlohmann.me/api/basic_json/parse/ |
nothing calls this directly
no test coverage detected