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

Function begin

src/ArduinoJson/Object/JsonObjectConst.hpp:59–63  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

57 // Returns an iterator to the first key-value pair of the object.
58 // https://arduinojson.org/v7/api/jsonobjectconst/begin/
59 iterator begin() const {
60 if (!data_)
61 return iterator();
62 return iterator(data_->createIterator(resources_), resources_);
63 }
64
65 // Returns an iterator following the last key-value pair of the object.
66 // https://arduinojson.org/v7/api/jsonobjectconst/end/

Callers

nothing calls this directly

Calls 2

createIteratorMethod · 0.80
iteratorClass · 0.50

Tested by

no test coverage detected