mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 08:48:30 +01:00
Added JsonArrayIterator
This commit is contained in:
@@ -86,4 +86,12 @@ JsonObject JsonArray::createNestedObject()
|
||||
}
|
||||
|
||||
return JsonObject(node);
|
||||
}
|
||||
|
||||
JsonArrayIterator JsonArray::begin()
|
||||
{
|
||||
if (!_node)
|
||||
return end();
|
||||
|
||||
return JsonArrayIterator(_node->getContainerChild());
|
||||
}
|
||||
Reference in New Issue
Block a user