| 18988 | std::random_access_iterator_tag, |
| 18989 | typename std::iterator_traits<IteratorType>::iterator_category>::value, int>::type = 0> |
| 18990 | static basic_json parse(IteratorType first, IteratorType last, |
| 18991 | const parser_callback_t cb = nullptr, |
| 18992 | const bool allow_exceptions = true) |
| 18993 | { |
| 18994 | basic_json result; |
| 18995 | parser(detail::input_adapter(first, last), cb, allow_exceptions).parse(true, result); |
| 18996 | return result; |
| 18997 | } |
| 18998 | |
| 18999 | template<class IteratorType, typename std::enable_if< |
| 19000 | std::is_base_of< |
no test coverage detected