@brief returns an iterator to one past the last element @sa https://json.nlohmann.me/api/basic_json/end/
| 22003 | /// @brief returns an iterator to one past the last element |
| 22004 | /// @sa https://json.nlohmann.me/api/basic_json/end/ |
| 22005 | iterator end() noexcept |
| 22006 | { |
| 22007 | iterator result(this); |
| 22008 | result.set_end(); |
| 22009 | return result; |
| 22010 | } |
| 22011 | |
| 22012 | /// @brief returns an iterator to one past the last element |
| 22013 | /// @sa https://json.nlohmann.me/api/basic_json/end/ |