@brief returns an iterator to one past the last element @sa https://json.nlohmann.me/api/basic_json/cend/
| 21975 | /// @brief returns an iterator to one past the last element |
| 21976 | /// @sa https://json.nlohmann.me/api/basic_json/cend/ |
| 21977 | const_iterator cend() const noexcept |
| 21978 | { |
| 21979 | const_iterator result(this); |
| 21980 | result.set_end(); |
| 21981 | return result; |
| 21982 | } |
| 21983 | |
| 21984 | /// @brief returns an iterator to the reverse-beginning |
| 21985 | /// @sa https://json.nlohmann.me/api/basic_json/rbegin/ |