MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / rbegin

Function rbegin

3rd/nlohmann_json/include/nlohmann/json.hpp:4821–4824  ·  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

4819 @since version 1.0.0
4820 */
4821 reverse_iterator rbegin() noexcept
4822 {
4823 return reverse_iterator(end());
4824 }
4825
4826 /*!
4827 @copydoc basic_json::crbegin()

Callers

nothing calls this directly

Calls 2

endFunction · 0.70
crbeginFunction · 0.70

Tested by

no test coverage detected