MCPcopy Create free account
hub / github.com/CalcProgrammer1/OpenRGB / rbegin

Function rbegin

dependencies/json/json.hpp:21190–21193  ·  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/ReversibleContainer)

Source from the content-addressed store, hash-verified

21188 @since version 1.0.0
21189 */
21190 reverse_iterator rbegin() noexcept
21191 {
21192 return reverse_iterator(end());
21193 }
21194
21195 /*!
21196 @copydoc basic_json::crbegin()

Callers

nothing calls this directly

Calls 2

endFunction · 0.70
crbeginFunction · 0.70

Tested by

no test coverage detected