| 235 | } |
| 236 | |
| 237 | json_wrapper<is_const_iter> value() const noexcept |
| 238 | { |
| 239 | if (is_object()) { |
| 240 | return json_wrapper<is_const_iter>(std::get<0>(iter_)->value()); |
| 241 | } |
| 242 | return json_wrapper<is_const_iter>(*std::get<1>(iter_)); |
| 243 | } |
| 244 | |
| 245 | generic_iterator& operator++() |
| 246 | { |