@brief returns a const reverse iterator to one before the first @sa https://json.nlohmann.me/api/basic_json/crend/
| 22019 | /// @brief returns a const reverse iterator to one before the first |
| 22020 | /// @sa https://json.nlohmann.me/api/basic_json/crend/ |
| 22021 | const_reverse_iterator crend() const noexcept |
| 22022 | { |
| 22023 | return const_reverse_iterator(cbegin()); |
| 22024 | } |
| 22025 | |
| 22026 | public: |
| 22027 | /// @brief wrapper to access iterator member functions in range-based for |