mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-25 16:27:33 +02: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