MCPcopy Create free account
hub / github.com/AllentDan/LibtorchTutorials / rbegin

Function rbegin

lesson6-Segmentation/json.hpp:21107–21110  ·  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

21105 @since version 1.0.0
21106 */
21107 reverse_iterator rbegin() noexcept
21108 {
21109 return reverse_iterator(end());
21110 }
21111
21112 /*!
21113 @copydoc basic_json::crbegin()

Callers

nothing calls this directly

Calls 2

endFunction · 0.85
crbeginFunction · 0.85

Tested by

no test coverage detected