| 203 | |
| 204 | template<typename InputAdapterType> |
| 205 | static ::nlohmann::detail::parser<basic_json, InputAdapterType> parser( |
| 206 | InputAdapterType adapter, |
| 207 | detail::parser_callback_t<basic_json>cb = nullptr, |
| 208 | const bool allow_exceptions = true, |
| 209 | const bool ignore_comments = false |
| 210 | ) |
| 211 | { |
| 212 | return ::nlohmann::detail::parser<basic_json, InputAdapterType>(std::move(adapter), |
| 213 | std::move(cb), allow_exceptions, ignore_comments); |
| 214 | } |
| 215 | |
| 216 | private: |
| 217 | using primitive_iterator_t = ::nlohmann::detail::primitive_iterator_t; |
no outgoing calls
no test coverage detected