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

Function crend

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

! @brief returns a const reverse iterator to one before the first Returns a const reverse iterator to the reverse-end; that is, one before the first 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/

Source from the content-addressed store, hash-verified

4922 @since version 1.0.0
4923 */
4924 const_reverse_iterator crend() const noexcept
4925 {
4926 return const_reverse_iterator(cbegin());
4927 }
4928
4929 public:
4930 /*!

Callers 1

rendFunction · 0.70

Calls 1

cbeginFunction · 0.70

Tested by

no test coverage detected