MCPcopy Create free account
hub / github.com/FastFlowLM/FastFlowLM / cbegin

Function cbegin

src/include/nlohmann/json.hpp:2813–2818  ·  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

2811 /// @brief returns a const iterator to the first element
2812 /// @sa https://json.nlohmann.me/api/basic_json/cbegin/
2813 const_iterator cbegin() const noexcept
2814 {
2815 const_iterator result(this);
2816 result.set_begin();
2817 return result;
2818 }
2819
2820 /// @brief returns an iterator to one past the last element
2821 /// @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