MCPcopy Create free account
hub / github.com/bblanchon/ArduinoJson / begin

Method begin

src/ArduinoJson/Array/JsonArrayConst.hpp:26–30  ·  view source on GitHub ↗

Returns an iterator to the first element of the array. https://arduinojson.org/v7/api/jsonarrayconst/begin/

Source from the content-addressed store, hash-verified

24 // Returns an iterator to the first element of the array.
25 // https://arduinojson.org/v7/api/jsonarrayconst/begin/
26 iterator begin() const {
27 if (!data_)
28 return iterator();
29 return iterator(data_->createIterator(resources_), resources_);
30 }
31
32 // Returns an iterator to the element following the last element of the array.
33 // https://arduinojson.org/v7/api/jsonarrayconst/end/

Callers 3

ReaderMethod · 0.45
operator==Function · 0.45
copyArrayFunction · 0.45

Calls 2

createIteratorMethod · 0.80
iteratorClass · 0.50

Tested by

no test coverage detected