JsonArray::createNestedArray()
appends a new array to the array pointed by the JsonArray
.
If the JsonArray
is null/unbound, this function does nothing.
JsonArray createNestedArray() const;
Return value
JsonArray::createNestedArray()
returns a JsonArray
that points to the newly created array.
JsonArray::createNestedArray()
returns null if the memory allocation fails; in which case JsonArray::isNull()
, returns true
.
StaticJsonDocument<200> doc;
JsonArray array = doc.to<JsonArray>();
array.add("hello");
JsonArray nested = array.createNestedArray();
nested.add("world");
serializeJson(array, Serial);
will write
See alsoRetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4