! @brief returns a const reverse iterator to one before the first Returns a const reverse iterator to the reverse-end; that is, one before the first element. @image html range-rbegin-rend.svg "Illustration from cppreference.com" @complexity Constant. @requirement This function helps `basic_json` satisfying the [ReversibleContainer](https://en.cppreference.com/w/cpp/
| 21291 | @since version 1.0.0 |
| 21292 | */ |
| 21293 | const_reverse_iterator crend() const noexcept |
| 21294 | { |
| 21295 | return const_reverse_iterator(cbegin()); |
| 21296 | } |
| 21297 | |
| 21298 | public: |
| 21299 | /*! |