| 1063 | return _parse_string(s, in); |
| 1064 | } |
| 1065 | bool parse_array_start() { |
| 1066 | if (depths_ == 0) |
| 1067 | return false; |
| 1068 | --depths_; |
| 1069 | return true; |
| 1070 | } |
| 1071 | template <typename Iter> bool parse_array_item(input<Iter> &in, size_t) { |
| 1072 | return _parse(*this, in); |
| 1073 | } |
nothing calls this directly
no outgoing calls
no test coverage detected