! @brief add an object to an array @copydoc push_back(basic_json&&) */
| 21819 | @copydoc push_back(basic_json&&) |
| 21820 | */ |
| 21821 | reference operator+=(basic_json&& val) |
| 21822 | { |
| 21823 | push_back(std::move(val)); |
| 21824 | return *this; |
| 21825 | } |
| 21826 | |
| 21827 | /*! |
| 21828 | @brief add an object to an array |
no test coverage detected