! @brief add an object to an array @copydoc push_back(basic_json&&) */
| 19431 | @copydoc push_back(basic_json&&) |
| 19432 | */ |
| 19433 | reference operator+=(basic_json&& val) |
| 19434 | { |
| 19435 | push_back(std::move(val)); |
| 19436 | return *this; |
| 19437 | } |
| 19438 | |
| 19439 | /*! |
| 19440 | @brief add an object to an array |
no test coverage detected