MCPcopy Create free account
hub / github.com/Open-GD/OpenGD / cbegin

Function cbegin

Source/external/json.hpp:21952–21957  ·  view source on GitHub ↗

@brief returns a const iterator to the first element @sa https://json.nlohmann.me/api/basic_json/cbegin/

Source from the content-addressed store, hash-verified

21950 /// @brief returns a const iterator to the first element
21951 /// @sa https://json.nlohmann.me/api/basic_json/cbegin/
21952 const_iterator cbegin() const noexcept
21953 {
21954 const_iterator result(this);
21955 result.set_begin();
21956 return result;
21957 }
21958
21959 /// @brief returns an iterator to one past the last element
21960 /// @sa https://json.nlohmann.me/api/basic_json/end/

Callers 3

frontFunction · 0.85
beginFunction · 0.85
crendFunction · 0.85

Calls 1

set_beginMethod · 0.80

Tested by

no test coverage detected