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

Function crbegin

3rd/nlohmann_json/include/nlohmann/json.hpp:4895–4898  ·  view source on GitHub ↗

! @brief returns a const reverse iterator to the last element Returns a const 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/Reversib

Source from the content-addressed store, hash-verified

4893 @since version 1.0.0
4894 */
4895 const_reverse_iterator crbegin() const noexcept
4896 {
4897 return const_reverse_iterator(cend());
4898 }
4899
4900 /*!
4901 @brief returns a const reverse iterator to one before the first

Callers 1

rbeginFunction · 0.70

Calls 1

cendFunction · 0.70

Tested by

no test coverage detected