! @brief returns a const reverse iterator to the last element Returns a const iterator to the reverse-beginning; that is, the last 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/named_req/Reversib
| 22394 | @since version 1.0.0 |
| 22395 | */ |
| 22396 | const_reverse_iterator crbegin() const noexcept |
| 22397 | { |
| 22398 | return const_reverse_iterator(cend()); |
| 22399 | } |
| 22400 | |
| 22401 | /*! |
| 22402 | @brief returns a const reverse iterator to one before the first |