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

Function rbegin

3rd/nlohmann_json/single_include/nlohmann/json.hpp:22322–22325  ·  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

22320 @since version 1.0.0
22321 */
22322 reverse_iterator rbegin() noexcept
22323 {
22324 return reverse_iterator(end());
22325 }
22326
22327 /*!
22328 @copydoc basic_json::crbegin()

Callers

nothing calls this directly

Calls 2

endFunction · 0.70
crbeginFunction · 0.70

Tested by

no test coverage detected