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

Method Slot

src/ArduinoJson/Memory/MemoryPool.hpp:20–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18class Slot {
19 public:
20 Slot() : ptr_(nullptr), id_(NULL_SLOT) {}
21 Slot(T* p, SlotId id) : ptr_(p), id_(id) {
22 ARDUINOJSON_ASSERT((p == nullptr) == (id == NULL_SLOT));
23 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected