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

Function rend

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

22357 @since version 1.0.0
22358 */
22359 reverse_iterator rend() noexcept
22360 {
22361 return reverse_iterator(begin());
22362 }
22363
22364 /*!
22365 @copydoc basic_json::crend()

Callers

nothing calls this directly

Calls 2

beginFunction · 0.70
crendFunction · 0.70

Tested by

no test coverage detected