! @brief add an object to an array @copydoc push_back(basic_json&&) */
| 5476 | @copydoc push_back(basic_json&&) |
| 5477 | */ |
| 5478 | reference operator+=(basic_json&& val) |
| 5479 | { |
| 5480 | push_back(std::move(val)); |
| 5481 | return *this; |
| 5482 | } |
| 5483 | |
| 5484 | /*! |
| 5485 | @brief add an object to an array |
no test coverage detected