@brief returns an iterator to one past the last element @sa https://json.nlohmann.me/api/basic_json/cend/
| 2836 | /// @brief returns an iterator to one past the last element |
| 2837 | /// @sa https://json.nlohmann.me/api/basic_json/cend/ |
| 2838 | const_iterator cend() const noexcept |
| 2839 | { |
| 2840 | const_iterator result(this); |
| 2841 | result.set_end(); |
| 2842 | return result; |
| 2843 | } |
| 2844 | |
| 2845 | /// @brief returns an iterator to the reverse-beginning |
| 2846 | /// @sa https://json.nlohmann.me/api/basic_json/rbegin/ |