! @brief add an object to an array @copydoc push_back(basic_json&&) */
| 22977 | @copydoc push_back(basic_json&&) |
| 22978 | */ |
| 22979 | reference operator+=(basic_json&& val) |
| 22980 | { |
| 22981 | push_back(std::move(val)); |
| 22982 | return *this; |
| 22983 | } |
| 22984 | |
| 22985 | /*! |
| 22986 | @brief add an object to an array |
no test coverage detected