@brief returns an iterator to one past the last element @sa https://json.nlohmann.me/api/basic_json/cend/
| 2541 | /// @brief returns an iterator to one past the last element |
| 2542 | /// @sa https://json.nlohmann.me/api/basic_json/cend/ |
| 2543 | const_iterator cend() const noexcept |
| 2544 | { |
| 2545 | const_iterator result(this); |
| 2546 | result.set_end(); |
| 2547 | return result; |
| 2548 | } |
| 2549 | |
| 2550 | /// @brief returns an iterator to the reverse-beginning |
| 2551 | /// @sa https://json.nlohmann.me/api/basic_json/rbegin/ |