| 17704 | |
| 17705 | template<typename InputAdapterType> |
| 17706 | static ::nlohmann::detail::parser<basic_json, InputAdapterType> parser( |
| 17707 | InputAdapterType adapter, |
| 17708 | detail::parser_callback_t<basic_json>cb = nullptr, |
| 17709 | const bool allow_exceptions = true, |
| 17710 | const bool ignore_comments = false |
| 17711 | ) |
| 17712 | { |
| 17713 | return ::nlohmann::detail::parser<basic_json, InputAdapterType>(std::move(adapter), |
| 17714 | std::move(cb), allow_exceptions, ignore_comments); |
| 17715 | } |
| 17716 | |
| 17717 | private: |
| 17718 | using primitive_iterator_t = ::nlohmann::detail::primitive_iterator_t; |
no outgoing calls
no test coverage detected