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

Function rend

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

! @brief returns an iterator to the reverse-end Returns an 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/named_req/ReversibleContainer)

Source from the content-addressed store, hash-verified

4856 @since version 1.0.0
4857 */
4858 reverse_iterator rend() noexcept
4859 {
4860 return reverse_iterator(begin());
4861 }
4862
4863 /*!
4864 @copydoc basic_json::crend()

Callers

nothing calls this directly

Calls 2

beginFunction · 0.70
crendFunction · 0.70

Tested by

no test coverage detected