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

Function begin

src/ArduinoJson/Array/JsonArray.hpp:79–83  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

77 // Returns an iterator to the first element of the array.
78 // https://arduinojson.org/v7/api/jsonarray/begin/
79 iterator begin() const {
80 if (!data_)
81 return iterator();
82 return iterator(data_->createIterator(resources_), resources_);
83 }
84
85 // Returns an iterator following the last element of the array.
86 // https://arduinojson.org/v7/api/jsonarray/end/

Callers 5

rangeToStringFunction · 0.50
setTagsFunction · 0.50
matchesMethod · 0.50
fileNameTagFunction · 0.50

Calls 2

createIteratorMethod · 0.80
iteratorClass · 0.50

Tested by 4

rangeToStringFunction · 0.40
setTagsFunction · 0.40
matchesMethod · 0.40
fileNameTagFunction · 0.40