@brief returns a const reverse iterator to one before the first @sa https://json.nlohmann.me/api/basic_json/crend/
| 22153 | /// @brief returns a const reverse iterator to one before the first |
| 22154 | /// @sa https://json.nlohmann.me/api/basic_json/crend/ |
| 22155 | const_reverse_iterator crend() const noexcept |
| 22156 | { |
| 22157 | return const_reverse_iterator(cbegin()); |
| 22158 | } |
| 22159 | |
| 22160 | public: |
| 22161 | /// @brief wrapper to access iterator member functions in range-based for |