forked from bblanchon/ArduinoJson
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