| 16761 | |
| 16762 | template<typename InputAdapterType> |
| 16763 | static ::nlohmann::detail::parser<basic_json, InputAdapterType> parser( |
| 16764 | InputAdapterType adapter, |
| 16765 | detail::parser_callback_t<basic_json>cb = nullptr, |
| 16766 | const bool allow_exceptions = true, |
| 16767 | const bool ignore_comments = false |
| 16768 | ) |
| 16769 | { |
| 16770 | return ::nlohmann::detail::parser<basic_json, InputAdapterType>(std::move(adapter), |
| 16771 | std::move(cb), allow_exceptions, ignore_comments); |
| 16772 | } |
| 16773 | |
| 16774 | private: |
| 16775 | using primitive_iterator_t = ::nlohmann::detail::primitive_iterator_t; |
no outgoing calls
no test coverage detected