| 237 | const std::string& value::get_key() const { return key; } |
| 238 | |
| 239 | static std::vector<value>* if_array_impl(const std::shared_ptr<value_base_impl>& x) |
| 240 | { |
| 241 | if(x == nullptr) |
| 242 | return nullptr; |
| 243 | return x->if_array(); |
| 244 | } |
| 245 | |
| 246 | static std::vector<value>& get_array_impl(const std::shared_ptr<value_base_impl>& x) |
| 247 | { |