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

Function size

src/ArduinoJson/Memory/StringPool.hpp:37–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35 }
36
37 size_t size() const {
38 size_t total = 0;
39 for (auto node = strings_; node; node = node->next)
40 total += sizeofString(node->length);
41 return total;
42 }
43
44 template <typename TAdaptedString>
45 StringNode* add(TAdaptedString str, Allocator* allocator) {

Callers

nothing calls this directly

Calls 1

sizeofStringFunction · 0.70

Tested by

no test coverage detected