@brief returns an iterator to one past the last element @sa https://json.nlohmann.me/api/basic_json/end/
| 21959 | /// @brief returns an iterator to one past the last element |
| 21960 | /// @sa https://json.nlohmann.me/api/basic_json/end/ |
| 21961 | iterator end() noexcept |
| 21962 | { |
| 21963 | iterator result(this); |
| 21964 | result.set_end(); |
| 21965 | return result; |
| 21966 | } |
| 21967 | |
| 21968 | /// @brief returns an iterator to one past the last element |
| 21969 | /// @sa https://json.nlohmann.me/api/basic_json/end/ |