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

Function size

src/ArduinoJson/Object/JsonObject.hpp:63–65  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

61 // Returns the number of members in the object.
62 // https://arduinojson.org/v7/api/jsonobject/size/
63 size_t size() const {
64 return data_ ? data_->size(resources_) : 0;
65 }
66
67 // Returns an iterator to the first key-value pair of the object.
68 // https://arduinojson.org/v7/api/jsonobject/begin/

Callers

nothing calls this directly

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected