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

Method usage

src/ArduinoJson/Memory/MemoryPoolList.hpp:129–134  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

127 }
128
129 SlotCount usage() const {
130 SlotCount total = 0;
131 for (PoolCount i = 0; i < count_; i++)
132 total = SlotCount(total + pools_[i].usage());
133 return total;
134 }
135
136 size_t size() const {
137 return Pool::slotsToBytes(usage());

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected