MCPcopy Create free account
hub / github.com/bytedance/Fastbot_Android / cbegin

Function cbegin

native/thirdpart/json/json.hpp:18714–18719  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

18712 @since version 1.0.0
18713 */
18714 const_iterator cbegin() const noexcept
18715 {
18716 const_iterator result(this);
18717 result.set_begin();
18718 return result;
18719 }
18720
18721 /*!
18722 @brief returns an iterator to one past the last element

Callers 3

frontFunction · 0.70
beginFunction · 0.70
crendFunction · 0.70

Calls 1

set_beginMethod · 0.45

Tested by

no test coverage detected