! @brief returns an iterator to the reverse-end Returns an 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/nam
| 21141 | @since version 1.0.0 |
| 21142 | */ |
| 21143 | reverse_iterator rend() noexcept |
| 21144 | { |
| 21145 | return reverse_iterator(begin()); |
| 21146 | } |
| 21147 | |
| 21148 | /*! |
| 21149 | @copydoc basic_json::crend() |