| 19304 | |
| 19305 | template<typename InputAdapterType> |
| 19306 | static ::nlohmann::detail::parser<basic_json, InputAdapterType> parser( |
| 19307 | InputAdapterType adapter, |
| 19308 | detail::parser_callback_t<basic_json>cb = nullptr, |
| 19309 | const bool allow_exceptions = true, |
| 19310 | const bool ignore_comments = false |
| 19311 | ) |
| 19312 | { |
| 19313 | return ::nlohmann::detail::parser<basic_json, InputAdapterType>(std::move(adapter), |
| 19314 | std::move(cb), allow_exceptions, ignore_comments); |
| 19315 | } |
| 19316 | |
| 19317 | private: |
| 19318 | using primitive_iterator_t = ::nlohmann::detail::primitive_iterator_t; |
no outgoing calls
no test coverage detected