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

Function begin

src/ArduinoJson/Object/JsonObject.hpp:69–73  ·  view source on GitHub ↗

Returns an iterator to the first key-value pair of the object. https://arduinojson.org/v7/api/jsonobject/begin/

Source from the content-addressed store, hash-verified

67 // Returns an iterator to the first key-value pair of the object.
68 // https://arduinojson.org/v7/api/jsonobject/begin/
69 iterator begin() const {
70 if (!data_)
71 return iterator();
72 return iterator(data_->createIterator(resources_), resources_);
73 }
74
75 // Returns an iterator following the last key-value pair of the object.
76 // https://arduinojson.org/v7/api/jsonobject/end/

Callers

nothing calls this directly

Calls 2

createIteratorMethod · 0.80
iteratorClass · 0.50

Tested by

no test coverage detected