MCPcopy Create free account
hub / github.com/arun11299/cpp-jwt / cend

Function cend

include/jwt/json/json.hpp:21077–21082  ·  view source on GitHub ↗

! @brief returns a const iterator to one past the last element Returns a const iterator to one past the last element. @image html range-begin-end.svg "Illustration from cppreference.com" @return const iterator one past the last element @complexity Constant. @requirement This function helps `basic_json` satisfying the [Container](https://en.cppreference.com/w/cpp/na

Source from the content-addressed store, hash-verified

21075 @since version 1.0.0
21076 */
21077 const_iterator cend() const noexcept
21078 {
21079 const_iterator result(this);
21080 result.set_end();
21081 return result;
21082 }
21083
21084 /*!
21085 @brief returns an iterator to the reverse-beginning

Callers 4

backFunction · 0.85
findFunction · 0.85
endFunction · 0.85
crbeginFunction · 0.85

Calls 1

set_endMethod · 0.45

Tested by

no test coverage detected