@brief returns a const reverse iterator to the last element @sa https://json.nlohmann.me/api/basic_json/crbegin/
| 22012 | /// @brief returns a const reverse iterator to the last element |
| 22013 | /// @sa https://json.nlohmann.me/api/basic_json/crbegin/ |
| 22014 | const_reverse_iterator crbegin() const noexcept |
| 22015 | { |
| 22016 | return const_reverse_iterator(cend()); |
| 22017 | } |
| 22018 | |
| 22019 | /// @brief returns a const reverse iterator to one before the first |
| 22020 | /// @sa https://json.nlohmann.me/api/basic_json/crend/ |