MCPcopy Create free account
hub / github.com/OpenFodder/openfodder / rbegin

Function rbegin

Source/Utils/json.hpp:21106–21109  ·  view source on GitHub ↗

! @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](https://en.cppreference.com/w/cpp/named_req/R

Source from the content-addressed store, hash-verified

21104 @since version 1.0.0
21105 */
21106 reverse_iterator rbegin() noexcept
21107 {
21108 return reverse_iterator(end());
21109 }
21110
21111 /*!
21112 @copydoc basic_json::crbegin()

Callers

nothing calls this directly

Calls 2

crbeginFunction · 0.85
endFunction · 0.70

Tested by

no test coverage detected