@brief returns a const reverse iterator to one before the first @sa https://json.nlohmann.me/api/basic_json/crend/
| 22063 | /// @brief returns a const reverse iterator to one before the first |
| 22064 | /// @sa https://json.nlohmann.me/api/basic_json/crend/ |
| 22065 | const_reverse_iterator crend() const noexcept |
| 22066 | { |
| 22067 | return const_reverse_iterator(cbegin()); |
| 22068 | } |
| 22069 | |
| 22070 | public: |
| 22071 | /// @brief wrapper to access iterator member functions in range-based for |