mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-17 20:42:24 +02:00
Added operator[]
This commit is contained in:
@ -36,7 +36,7 @@ size_t JsonObjectBase::printTo(Print& p) const
|
||||
return n;
|
||||
}
|
||||
|
||||
JsonValue& JsonObjectBase::getValue(char const* key)
|
||||
JsonValue& JsonObjectBase::operator[](char const* key)
|
||||
{
|
||||
for (int i = 0; i < count; ++i)
|
||||
{
|
||||
|
Reference in New Issue
Block a user