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

Function cend

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

22290 @since version 1.0.0
22291 */
22292 const_iterator cend() const noexcept
22293 {
22294 const_iterator result(this);
22295 result.set_end();
22296 return result;
22297 }
22298
22299 /*!
22300 @brief returns an iterator to the reverse-beginning

Callers 4

backFunction · 0.70
findFunction · 0.70
endFunction · 0.70
crbeginFunction · 0.70

Calls 1

set_endMethod · 0.45

Tested by

no test coverage detected