| 20875 | std::random_access_iterator_tag, |
| 20876 | typename std::iterator_traits<IteratorType>::iterator_category>::value, int>::type = 0> |
| 20877 | static basic_json parse(IteratorType first, IteratorType last, |
| 20878 | const parser_callback_t cb = nullptr, |
| 20879 | const bool allow_exceptions = true) |
| 20880 | { |
| 20881 | basic_json result; |
| 20882 | parser(detail::input_adapter(first, last), cb, allow_exceptions).parse(true, result); |
| 20883 | return result; |
| 20884 | } |
| 20885 | |
| 20886 | template<class IteratorType, typename std::enable_if< |
| 20887 | std::is_base_of< |
no test coverage detected