! @brief add an object to an array @copydoc push_back(basic_json&&) */
| 21735 | @copydoc push_back(basic_json&&) |
| 21736 | */ |
| 21737 | reference operator+=(basic_json&& val) |
| 21738 | { |
| 21739 | push_back(std::move(val)); |
| 21740 | return *this; |
| 21741 | } |
| 21742 | |
| 21743 | /*! |
| 21744 | @brief add an object to an array |
no test coverage detected