@brief returns an iterator to one past the last element @sa https://json.nlohmann.me/api/basic_json/cend/
| 22019 | /// @brief returns an iterator to one past the last element |
| 22020 | /// @sa https://json.nlohmann.me/api/basic_json/cend/ |
| 22021 | const_iterator cend() const noexcept |
| 22022 | { |
| 22023 | const_iterator result(this); |
| 22024 | result.set_end(); |
| 22025 | return result; |
| 22026 | } |
| 22027 | |
| 22028 | /// @brief returns an iterator to the reverse-beginning |
| 22029 | /// @sa https://json.nlohmann.me/api/basic_json/rbegin/ |