| 16681 | |
| 16682 | template<typename InputAdapterType> |
| 16683 | static ::nlohmann::detail::parser<basic_json, InputAdapterType> parser( |
| 16684 | InputAdapterType adapter, |
| 16685 | detail::parser_callback_t<basic_json>cb = nullptr, |
| 16686 | const bool allow_exceptions = true, |
| 16687 | const bool ignore_comments = false |
| 16688 | ) |
| 16689 | { |
| 16690 | return ::nlohmann::detail::parser<basic_json, InputAdapterType>(std::move(adapter), |
| 16691 | std::move(cb), allow_exceptions, ignore_comments); |
| 16692 | } |
| 16693 | |
| 16694 | using primitive_iterator_t = ::nlohmann::detail::primitive_iterator_t; |
| 16695 | template<typename BasicJsonType> |
no outgoing calls
no test coverage detected