@brief returns an iterator to one past the last element @sa https://json.nlohmann.me/api/basic_json/end/
| 22093 | /// @brief returns an iterator to one past the last element |
| 22094 | /// @sa https://json.nlohmann.me/api/basic_json/end/ |
| 22095 | iterator end() noexcept |
| 22096 | { |
| 22097 | iterator result(this); |
| 22098 | result.set_end(); |
| 22099 | return result; |
| 22100 | } |
| 22101 | |
| 22102 | /// @brief returns an iterator to one past the last element |
| 22103 | /// @sa https://json.nlohmann.me/api/basic_json/end/ |