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

Function size

src/ArduinoJson/Object/JsonObjectConst.hpp:53–55  ·  view source on GitHub ↗

Returns the number of members in the object. https://arduinojson.org/v7/api/jsonobjectconst/size/

Source from the content-addressed store, hash-verified

51 // Returns the number of members in the object.
52 // https://arduinojson.org/v7/api/jsonobjectconst/size/
53 size_t size() const {
54 return data_ ? data_->size(resources_) : 0;
55 }
56
57 // Returns an iterator to the first key-value pair of the object.
58 // https://arduinojson.org/v7/api/jsonobjectconst/begin/

Callers

nothing calls this directly

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected