| 5895 | */ |
| 5896 | template<class T, std::size_t N> |
| 5897 | static basic_json parse(T (&array)[N], |
| 5898 | const parser_callback_t cb = nullptr) |
| 5899 | { |
| 5900 | // delegate the call to the iterator-range parse overload |
| 5901 | return parse(std::begin(array), std::end(array), cb); |
| 5902 | } |
| 5903 | |
| 5904 | /*! |
| 5905 | @brief deserialize from string literal |
no test coverage detected