! @brief returns an iterator to the reverse-beginning Returns an 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](http://en.cppreference.com/w/cpp/concept/ReversibleContainer) req
| 4440 | @since version 1.0.0 |
| 4441 | */ |
| 4442 | reverse_iterator rbegin() noexcept |
| 4443 | { |
| 4444 | return reverse_iterator(end()); |
| 4445 | } |
| 4446 | |
| 4447 | /*! |
| 4448 | @copydoc basic_json::crbegin() |
no test coverage detected