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

Method RamString

src/ArduinoJson/Strings/Adapters/RamString.hpp:29–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27#endif
28
29 RamString(const char* str, size_t sz, bool isStatic = false)
30 : str_(str), size_(sz & sizeMask), static_(isStatic) {
31 ARDUINOJSON_ASSERT(size_ == sz);
32 }
33
34 bool isNull() const {
35 return !str_;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected